示例#1
0
 public static EmployeesDTO login(string username, string password)
 {
     return(EmployeesCast.ToDTO(EmployeesDAL.Login(username, password)));
 }
示例#2
0
 public static EmployeesDTO GetById(int id)
 {
     return(EmployeesCast.ToDTO(EmployeesDAL.GetById(id)));
 }