Beispiel #1
0
 public IEnumerable <Client> Get()
 {
     try
     {
         ClientDAL oClient = new ClientDAL();
         return(oClient.Get());
     }
     catch (Exception Er)
     {
         throw new Exception("Ocurrio un error en la aplicacion", Er);
     }
 }