コード例 #1
0
 public ImportantDocumentCategoryEntityDto(ImportantDocumentCategoryEntity model)
 {
     Id                  = model.Id;
     Created             = model.Created;
     Modified            = model.Modified;
     Name                = model.Name;
     ImportantDocumentss = model.ImportantDocumentss;
 }
コード例 #2
0
        public static ServersideImportantDocumentCategoryEntity Convert(ImportantDocumentCategoryEntity model)
        {
            var dto = new ImportantDocumentCategoryEntityDto(model);

            return(dto.GetServersideImportantDocumentCategoryEntity());
        }