gagan 4 years ago
parent
commit
0475a7d178
  1. 9
      Business/Customer/CustomerServices.cs
  2. 5
      Business/Customer/ICustomerServices.cs

9
Business/Customer/CustomerServices.cs

@ -40,9 +40,10 @@ namespace Business.Customer
return _customerRepo.GetCustomerDetailsWitDT(customerId, user); 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) public DataTable GetDetailsForEditCustomer(string customerId, string user)
@ -50,9 +51,9 @@ namespace Business.Customer
return _customerRepo.GetDetailsForEditCustomer(customerId, user); 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) public DataRow GetRequiredCustomerDetails(string customerId, string user)

5
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); 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); 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); DataSet LoadCustomerDataNew(string user, string customerId, string flag, string sCountryId, string settlementAgent);
DbResult UpdateBenificiarInformation(BenificiaryModel benificiar, string user); DbResult UpdateBenificiarInformation(BenificiaryModel benificiar, string user);
DataTable GetCustomerDetailsWitDT(string customerId, string user); DataTable GetCustomerDetailsWitDT(string customerId, string user);
DataSet GetCustomerInfoFromMembershiId(string user, string membershipId, string receiverId, string rowId);
} }
} }
Loading…
Cancel
Save