//------------- CONSTRUCTORS --------------
 public OperatingLocationsController(IDepartmentsService departmentsService, IOperatingLocationsService operatingLocationsService)
 {
     this.departmentsService          = departmentsService;
     this.operatingLocationsService   = operatingLocationsService;
     this.operatingLocationInputModel = new OperatingLocationInputModel();
 }
 //------------- CONSTRUCTORS --------------
 public EmployeesController(IEmployeesService employeesService, IJobPositionsService jobPositionsService, IOperatingLocationsService operatingLocationsService)
 {
     this.employeesService          = employeesService;
     this.jobPositionsService       = jobPositionsService;
     this.operatingLocationsService = operatingLocationsService;
     this.employeeInputModel        = new EmployeeInputModel();
 }