using CustomerOnlineRemit.Common.Model.Account; using CustomerOnlineRemit.Common.Model; using CustomerOnlineRemit.Repository.Repository.Account; using CustomerOnlineRemit.Common.Model.Customer; namespace CustomerOnlineRemit.Business.Business.Account { public class AccountBusiness : IAccountBusiness { IAccountRepository _accountRepo; public AccountBusiness(IAccountRepository accountRepository) { _accountRepo = accountRepository; } public async Task DoLoginAsync(LoginModel loginModel) { return await _accountRepo.DoLoginAsync(loginModel); } public async Task GetCustomerReceiverList(bool ShowAll, LoginResponse loginDetails) { return await _accountRepo.GetCustomerReceiverList(ShowAll, loginDetails); } public async Task GetCustomerTransactionList(bool ShowAll, LoginResponse loginDetails) { return await _accountRepo.GetCustomerTransactionList(ShowAll, loginDetails); } public async Task GetDynamicDropDown(string flag, LoginResponse loginDetails, string selectedValue1 = "") { return await _accountRepo.GetDynamicDropDown(flag, loginDetails, selectedValue1); } } }