예제 #1
0
 public IEnumerable <Zoo> Get()
 {
     try
     {
         return(_repo.GetAll());
     } catch (Exception e)
     {
         Console.WriteLine(e);
         return(new List <Zoo>());
     }
 }