public EmployeeService(IEmployeeImplementation employeeImplementation)
 {
     _employeeImplementation = employeeImplementation;
 }
 public EmployeeService(IEmployeeImplementation employeeImplementation)
     : base(employeeImplementation)
 {
 }