コード例 #1
0
 public static int addComType(ComType comtype)
 {
     return(ComTypeService.addComType(comtype));
 }
コード例 #2
0
 public static IList <ComType> getComTypeAll()
 {
     return(ComTypeService.getComTypeAll());
 }
コード例 #3
0
 public static int getComTypeByTypename(string typename)
 {
     return(ComTypeService.getComTypeByTypename(typename));
 }
コード例 #4
0
 public static ComType getComTypeById(int id)
 {
     return(ComTypeService.getComTypeById(id));
 }
コード例 #5
0
 public static int deleteComType(int id)
 {
     return(ComTypeService.deleteComTypeById(id));
 }
コード例 #6
0
 public static int updateComType(ComType comtype)
 {
     return(ComTypeService.updateComTypeById(comtype));
 }