/// <summary> /// /// </summary> /// <param name="employeeClient"></param> public EmployeeController(IEmployeeClient employeeClient) : base() { client = employeeClient; }
public EmployeeUiService(IEmployeeClient employeeClient) { _employeeClient = employeeClient; }
public Employee(IEmployeeClient employeeClient) { _employeeClient = employeeClient; }
public EmployeeBusinessController(IEmployeeClient employeeClient, IAppSettings appSettings) { _appSettings = appSettings; _employeeClient = employeeClient; }
public EmployeeProvider(IEmployeeClient employeeClient) { _employeeClient = employeeClient; _employeeMapper = new EmployeeMapper(); }