コード例 #1
0
ファイル: CusTypeManager.cs プロジェクト: zxmajunhong/wanghai
 public static int addCusType(CusType custype)
 {
     return(CusTypeService.addCusType(custype));
 }
コード例 #2
0
ファイル: CusTypeManager.cs プロジェクト: zxmajunhong/wanghai
 public static IList <CusType> getCusTypeAll()
 {
     return(CusTypeService.getCusTypeAll());
 }
コード例 #3
0
ファイル: CusTypeManager.cs プロジェクト: zxmajunhong/wanghai
 public static int getCusTypeBytypename(string typename)
 {
     return(CusTypeService.getCusTypeBytypename(typename));
 }
コード例 #4
0
ファイル: CusTypeManager.cs プロジェクト: zxmajunhong/wanghai
 public static CusType getCusTypeById(int id)
 {
     return(CusTypeService.getCusTypeById(id));
 }
コード例 #5
0
ファイル: CusTypeManager.cs プロジェクト: zxmajunhong/wanghai
 public static int deleteCusType(int id)
 {
     return(CusTypeService.deleteCusTypeById(id));
 }
コード例 #6
0
ファイル: CusTypeManager.cs プロジェクト: zxmajunhong/wanghai
 public static int updateCusType(CusType custype)
 {
     return(CusTypeService.updateCusTypeById(custype));
 }