public static DbAuthor FillBlanks(Gender gender) { var p = NewPerson.FillBlanks(gender); var b = new DbAuthor(p.First, p.Last, p.Patronimic, (eWriterType)NewValue.Int(2)); All.Add(b); return(b); }
public DbPublication(string Name, DbAuthor Author, ePublicationType PublicationType, eBookPublication BookPublication, DateTime DatePublished, string Publisher) : this(Name, PublicationType, BookPublication, DatePublished, Publisher) { Authors = new [] { Author }; }