public ActionResult BranchExcelFileImport(HttpPostedFileBase branchExcelFileBase)
 {
     if (ModelState.IsValid)
     {
         BranchModel branchModel = new BranchModel();
         branchModel.BranchExcelFile(branchExcelFileBase);
     }
     return(RedirectToAction("Index"));
 }