public ActionResult <IEnumerable <EmployeeResponse> > GetAllEmployeeWithoutCompany()
 {
     try
     {
         var result = _employeeAppService.GetAllEmployeeWithoutCompany().ToList();
         var listEmployeeResponse = _mapper.Map <List <Employee>, List <EmployeeResponse> >(result);
         return(CustomResponse(listEmployeeResponse));
     }
     catch (Exception ex)
     {
         MessageException();
         return(CustomExceptionResponse());
     }
 }