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

using CustomerOnlineRemit.Common.Model;
using CustomerOnlineRemit.Common.Model.Account;
using CustomerOnlineRemit.Common.Model.Customer;
namespace CustomerOnlineRemit.Repository.Repository.Account
{
public interface IAccountRepository
{
Task<LoginResponse> DoLoginAsync(LoginModel loginModel);
Task<CustomerReceiverModel> GetCustomerReceiverList(bool ShowAll, LoginResponse loginDetails);
Task<CustomerTransactionList> GetCustomerTransactionList(bool ShowAll, LoginResponse loginDetails);
Task<DropDownModel> GetDynamicDropDown(string flag, LoginResponse loginDetails, string selectedValue1 = "");
}
}