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