예제 #1
0
        // Method to Read a specific Branch from the database.
        public ActionResult Branch_ReadById(int id)
        {
            Branch data = branchrepo.Branch_ReadById(id);

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