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.
 
 
 
 
 

16 lines
811 B

using CustomerOnlineV2.Common.Models.AccountModel;
using CustomerOnlineV2.Common.Models.HomeModel;
namespace CustomerOnlineV2.Business.Business.HomeBusiness
{
public interface IHomeBusiness
{
Task<CustomerReceiverModel> GetCustomerReceiverList(LoginResponse loginDetails);
Task<CustomerTransactionList> GetCustomerTransactionList(LoginResponse loginDetails);
Task<CommonDropDownList> GetDDLList(CommonDropDownModel model, LoginResponse loginDetails);
Task<CustomerTransactionList> GetTranDetailById(string tranId);
Task<CustomerReceiverModel> GetReceiverDetailById(string id);
Task<CustomerReceiverModel> GetAllReceiverList(LoginResponse loginDetails);
Task<CustomerNotificationModel> GetCustomerNotifList(LoginResponse loginDetails);
}
}