Esempio n. 1
0
        public ActionResult Index()
        {
            ContactBAL CB      = new ContactBAL();
            var        records = CB.GetAll();

            return(View(records));
        }
Esempio n. 2
0
 public List <Contact> GetList()
 {
     return(bll.GetAll());
 }