public async Task <IActionResult> DeleteEmployment(Guid carStationId, Guid employeeId)
        {
            await _service.RemoveEmployment(employeeId, carStationId);

            return(NoContent());
        }