You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
650 B

  1. using CustomerOnlineRemit.Common.Model;
  2. using CustomerOnlineRemit.Common.Model.Account;
  3. using CustomerOnlineRemit.Common.Model.Customer;
  4. namespace CustomerOnlineRemit.Repository.Repository.Account
  5. {
  6. public interface IAccountRepository
  7. {
  8. Task<LoginResponse> DoLoginAsync(LoginModel loginModel);
  9. Task<CustomerReceiverModel> GetCustomerReceiverList(bool ShowAll, LoginResponse loginDetails);
  10. Task<CustomerTransactionList> GetCustomerTransactionList(bool ShowAll, LoginResponse loginDetails);
  11. Task<DropDownModel> GetDynamicDropDown(string flag, LoginResponse loginDetails, string selectedValue1 = "");
  12. }
  13. }