Example #1
0
 public static DashboardDTO DeleteCompany(DashboardDTO _dto)
 {
     try
     {
         mapper.Delete("DeleteCompany", _dto);
         resultDTO.isSuccess = true;
     }
     catch (Exception exception)
     {
         resultDTO.Message   = exception.Message;
         resultDTO.isSuccess = false;
     }
     return(resultDTO);
 }
Example #2
0
 // 다른 장비에 있는 동일 아이템 찾기
 public static IList <DashboardDTO> SelectEquipmentComparenceList(DashboardDTO vo)
 {
     return(mapper.QueryForList <DashboardDTO>("Dashboard.SelectEquipmentComparenceList", vo));
 }
Example #3
0
 // 장비의 오더리스트
 public static IList <DashboardDTO> SelectOrderOfEquipmentList(DashboardDTO vo)
 {
     return(mapper.QueryForList <DashboardDTO>("Dashboard.SelectOrderOfEquipmentList", vo));
 }
Example #4
0
 // 부서
 public static IList <DashboardDTO> SelectDepartmentList(DashboardDTO vo)
 {
     return(mapper.QueryForList <DashboardDTO>("Dashboard.SelectDepartmentList", vo));
 }