public Employee GetEmployeeInfo(string empCode)
 {
     return(edao.GetEmployeeByCode(empCode));
 }
 public Employee GetEmployeeByCode(string employeeCode)
 {
     return(eDAO.GetEmployeeByCode(employeeCode));
 }
Пример #3
0
 public String GetCollectionSClerkInCharge(String collectionPointCode)
 {
     return(employeeDAO.GetEmployeeByCode(collectionPointDAO.SearchByCollectionPointCode(collectionPointCode).FirstOrDefault().SClerkInCharge).EmployeeName);
 }