public ActionResult AddBank(Bank model) { _financialService.AddBank(new Bank() { BankBranch = model.BankBranch, AccountId = model.AccountId, IsActive = model.IsActive, Address = model.Address, Name = model.Name, Number = model.Number, Type = model.Type }); return(RedirectToAction("Banks")); }