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
644 B

using CustomerOnlineRemit.Common.Model.Account;
using CustomerOnlineRemit.Common.Model;
using CustomerOnlineRemit.Common.Model.Customer;
namespace CustomerOnlineRemit.Business.Business.Account
{
public interface IAccountBusiness
{
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 = "");
}
}