예제 #1
0
        public By_Department_View(Department_View source)
        {
            if (source == null)
            {
                throw new ArgumentNullException();
            }

            this.Id   = source.Id;
            this.Name = source.Name;
        }
예제 #2
0
 public static Department ConvertToModel(this Department_View source)
 {
     return(new Department_Mappers().ConvertToModel(source));
 }
 public Persons_By_Department_View(Department_View source)
     : base(source)
 {
 }