예제 #1
0
        public ActionResult Branch_Create(Branch branch)
        {
            int           success = branchrepo.Branch_Create(branch);
            List <Branch> data    = branchrepo.Branch_Read();

            return(View("Branch_Read", data));
        }