Пример #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));
 }