public AccountController(IAccountManager iAcccountManager,
                          IBranchManager iBranchManager,
                          IAccountTypeManager iAccountTypeManager,
                          IAccountStatusManager iAccountStatusManager, ICustomerManager iCustomerManager)
 {
     _iAcccountManager      = iAcccountManager;
     _iBranchManager        = iBranchManager;
     _iAccountTypeManager   = iAccountTypeManager;
     _iAccountStatusManager = iAccountStatusManager;
     _iCustomerManager      = iCustomerManager;
 }
 public AccountTypeController(IAccountTypeManager iAccountTypeManager)
 {
     _iAccountTypeManager = iAccountTypeManager;
 }
 public AccountTypeController(IAccountTypeManager accountType)
 {
     _accountType = accountType;
 }