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

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