Ejemplo n.º 1
0
 public IList <TAnimal> GetExistingComponentsList()
 {
     try
     {
         using (GetConversationCaregiver())
         {
             return(animalDao.GetAll());
         }
     }
     catch (Exception e)
     {
         ManageException(e);
         throw;
     }
 }
 public IList <TAnimal> GetExistingComponentsList()
 {
     return(animalDao.GetAll());
 }