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

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