Ejemplo n.º 1
0
 public IEnumerable <Country> Getcountries()
 {
     Repository.EmployeeBLL bll = new Repository.EmployeeBLL();
     return(bll.GetALLCountry().ToList());
 }
Ejemplo n.º 2
0
 public ActionResult Post(Employee employee)
 {
     Repository.EmployeeBLL bll = new Repository.EmployeeBLL();
     bll.Add(employee);
     return(Ok());
 }
Ejemplo n.º 3
0
 public IEnumerable <Employee> Get()
 {
     Repository.EmployeeBLL bll = new Repository.EmployeeBLL();
     return(bll.GetALL().ToList());
 }