public bool AddAccount(AccountDto acc, UserDto user)
        {
            AccountPresenter accPresenter = new AccountPresenter();

            if (accPresenter.CreateAccount(acc, user) != null)
            {
                AccountBindingList.Add(acc);
                return(true);
            }
            return(false);
        }