示例#1
0
        public static CategorDto FroCategor(this CategorDto dto, Categor a)
        {
            dto.Id    = a.Id;
            dto.Title = a.Title;
            dto.Info  = a.Info;

            return(dto);
        }
示例#2
0
        public static Categor ToCategor(this CategorDto dto)
        {
            var cat = new Categor
            {
                Id    = dto.Id,
                Title = dto.Title,
                Info  = dto.Info
            };

            return(cat);
        }