예제 #1
0
 public List <ClientDto> GetAllClientByUser(ClientRequest request)
 {
     try
     {
         return(_clientLogic.GetAllClientByUser(request.Email));
     }
     catch (Exception e)
     {
         throw new FaultException("Not found");
     }
 }