diff --git a/Business/Customer/CustomerServices.cs b/Business/Customer/CustomerServices.cs index b1d8c74..75f0f73 100644 --- a/Business/Customer/CustomerServices.cs +++ b/Business/Customer/CustomerServices.cs @@ -40,9 +40,10 @@ namespace Business.Customer return _customerRepo.GetCustomerDetailsWitDT(customerId, user); } - public DataSet GetCustomerInfoFromMembershiId(string user, string membershipId) + public DataSet GetCustomerInfoFromMembershiId(string user, string membershipId, string receiverId, string rowId) { - return _customerRepo.GetCustomerInfoFromMembershiId(user, membershipId); + + return _customerRepo.GetCustomerInfoFromMembershiId(user, membershipId,receiverId,rowId); } public DataTable GetDetailsForEditCustomer(string customerId, string user) @@ -50,9 +51,9 @@ namespace Business.Customer return _customerRepo.GetDetailsForEditCustomer(customerId, user); } - public DataTable GetDocumentByCustomerId(string customerId) + public DataTable GetDocumentByCustomerId(string customerId,string fileDescription,string sessionId) { - return _customerRepo.GetDocumentByCustomerId(customerId); + return _customerRepo.GetDocumentByCustomerId(customerId, fileDescription, sessionId); } public DataRow GetRequiredCustomerDetails(string customerId, string user) diff --git a/Business/Customer/ICustomerServices.cs b/Business/Customer/ICustomerServices.cs index f70245f..39172a7 100644 --- a/Business/Customer/ICustomerServices.cs +++ b/Business/Customer/ICustomerServices.cs @@ -29,11 +29,12 @@ namespace Business.Customer DataTable LoadDataPaymentModeDdl(string sCountryid, string pCountry, string collMode, string agentId, string flag, string user); DbResult UpdateCustomerDocument(string cdId, string customerId, string fileName, string fileDescription, string fileType, string documentType, string user); - DataSet GetCustomerInfoFromMembershiId(string user, string membershipId); - DataTable GetDocumentByCustomerId(string customerId); + DataTable GetDocumentByCustomerId(string customerId,string fileDescription,string sessionId); DataSet LoadCustomerDataNew(string user, string customerId, string flag, string sCountryId, string settlementAgent); DbResult UpdateBenificiarInformation(BenificiaryModel benificiar, string user); DataTable GetCustomerDetailsWitDT(string customerId, string user); + + DataSet GetCustomerInfoFromMembershiId(string user, string membershipId, string receiverId, string rowId); } }