コード例 #1
0
ファイル: ServiceMobile.cs プロジェクト: sadallo/UMNewProject
 public Boolean insertCategory(String CategoryId, String CategoryName, String CategoryDescription)
 {
     Category obj = Category.createCategory(CategoryId, CategoryName, CategoryDescription);
     CategoryManager mgr = new CategoryManager();
     return mgr.insertCategory(obj);
 }
コード例 #2
0
ファイル: Service.cs プロジェクト: sadallo/UMNewProject
 public Boolean insertCategory(CategoryDto dto)
 {
     Category obj = Category.createCategory(dto.CategoryId, dto.CategoryName, dto.CategoryDescription);
     CategoryManager mgr = new CategoryManager();
     return mgr.insertCategory(obj);
 }