public By_Department_View(Department_View source) { if (source == null) { throw new ArgumentNullException(); } this.Id = source.Id; this.Name = source.Name; }
public static Department ConvertToModel(this Department_View source) { return(new Department_Mappers().ConvertToModel(source)); }
public Persons_By_Department_View(Department_View source) : base(source) { }