public ActionResult Create()
        {
            TransferModel transfer = new TransferModel();

            List<Branch> fromBranchList = BranchManager.GetAllBranch(new Branch { BranchName = "", AddressLine1 = "", IsActive = true }, "dini");
            ViewBag.FromBranchList = fromBranchList;

            Branch[] tmpArray = new Branch[] { };
            fromBranchList.CopyTo(tmpArray);
            List<Branch> toBranchList = tmpArray.ToList();
            ViewBag.ToBranchList = toBranchList;

            return View(transfer);
        }