Exemplo n.º 1
0
        // GET: ContactBatch
        public ActionResult Index()
        {
            List <ContactBatch> contactBatchDBs = new List <ContactBatch>();

            contactBatchDBs = ContactBatchDB.GetAllBatches();
            return(View(contactBatchDBs));
        }
 public ActionResult Index()
 {
     return(View(ContactBatchDB.GetAllBatches()));
 }