This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public partial class DbContextDataContext : System.Data.Linq.DataContext, IStorage | |
| { | |
| ... | |
| public System.Data.Linq.Table<Author> Authors | |
| { | |
| get | |
| { | |
| return this.GetTable<Author>(); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace ПредметнаяОбласть | |
| { | |
| using System; | |
| using System.Collections.Generic; | |
| internal abstract class Документ | |
| { | |
| private readonly List<Строка_Документа> строки = new List<Строка_Документа>(); | |
| public Документ() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class CustomSmtpAppender : SmtpAppender | |
| { | |
| public PatternLayout SubjectLayout { get; set; } | |
| protected override void SendBuffer(LoggingEvent[] events) | |
| { | |
| PrepareSubject(events); | |
| base.SendBuffer(events); | |
| } |