Exemplo n.º 1
0
        // GET: Home
        public ActionResult Index()
        {
            PetDao _petDao = new PetDao();

            List <PetJsonModel> pets = _petDao.GetAll().Take(10).ToList();

            return(View(pets));
        }
Exemplo n.º 2
0
 public PetService()
 {
     this.petDao = new PetDao();
 }