public HomeController(IEmpRepo _empRepo, IHostingEnvironment _HostEnv) { empRepo = _empRepo; HostEnv = _HostEnv; }
public EmpService(IEmpRepo employeeRepository) { _employeeRepository = employeeRepository; }
public EmpController(IEmpRepo empRepo) { this._empRepo = empRepo; }
public EmpsController(IEmpRepo empRepo) { repo = empRepo; }