Exemplo n.º 1
0
 public CountryController(IHRMRepository hrmRepository)
 {
     _hrmRepository = hrmRepository;
 }
Exemplo n.º 2
0
 public EmployeeController(IHRMRepository hrmRepository)
 {
     _hrmRepository = hrmRepository;
 }
Exemplo n.º 3
0
 public JobCategoryController(IHRMRepository hrmRepository)
 {
     _hrmRepository = hrmRepository;
 }
Exemplo n.º 4
0
 public HomeController(IHRMRepository repo)
 {
     repository = repo;
 }