public GetBankAccountByIdResponse GetById(Guid id)
        {
            var bankAccount = _bankAccountQueries.GetBankAccountFull(id);

            CheckBrand(bankAccount.Bank.BrandId);

            return(new GetBankAccountByIdResponse
            {
                BankAccount = Mapper.Map <BankAccountDto>(bankAccount)
            });
        }