예제 #1
0
 public static bool Delete(int consigneeId)
 {
     return(ConsigneeRepository.Delete(consigneeId));
 }
예제 #2
0
 public static tblConsigneeDTO Get(int consigneeId)
 {
     return(ConsigneeRepository.Get(consigneeId));
 }
예제 #3
0
 public static List <tblConsigneeDTO> GetAll()
 {
     return(ConsigneeRepository.GetAll());
 }
예제 #4
0
 public static int Save(tblConsigneeDTO tblConsigneeDTO)
 {
     return(ConsigneeRepository.Save(tblConsigneeDTO));
 }