Пример #1
0
        // Method to Delete a Branch from the database.
        public ActionResult Branch_Delete(int id)
        {
            bool deleted = branchrepo.Branch_Delete(id);

            return(View("Branch_Delete", branchrepo.Branch_ReadById(id)));
        }