コード例 #1
0
        public static Tags ToEntity(this TagsViewModel model, Tags entity)
        {
            entity.Name = model.Name;
            entity.Id   = model.Id;

            return(entity);
        }
コード例 #2
0
 public static Tags ToEntity(this TagsViewModel model)
 {
     return(new Tags()
     {
         Name = model.Name,
         Id = model.Id,
     });
 }