using CustomerOnlineRemit.Common.Model.Account; using CustomerOnlineRemit.Common.Model; using CustomerOnlineRemit.Common.Model.Customer; namespace CustomerOnlineRemit.Business.Business.Account { public interface IAccountBusiness { Task DoLoginAsync(LoginModel loginModel); Task GetCustomerReceiverList(bool ShowAll, LoginResponse loginDetails); Task GetCustomerTransactionList(bool ShowAll, LoginResponse loginDetails); Task GetDynamicDropDown(string flag, LoginResponse loginDetails, string selectedValue1 = ""); } }