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.

42 lines
1.9 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. using Common.Model.BenificiaryModel;
  2. using Common.Model.CustomerModel;
  3. using Common.Utility;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Data;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace Business.Customer
  11. {
  12. public interface ICustomerServices
  13. {
  14. DataRow GetCustomerDetails(string customerId, string user);
  15. DbResult RegisterCustomerNew(OnlineCustomerModel onlineCustomerModel);
  16. DbResult RegisterCustomerAndReceiver(OnlineCustomerModel onlineCustomerModel, BenificiaryModel beniciaryModel);
  17. DbResult AddCustomerSignature(string customerId, string user, string fileName, string signaturetype, string signatureId);
  18. string GetCustomerDetailsForFileUpload(string customerId);
  19. DataTable GetAddressByZipCodeNew(string zipCode, string user, string rowId);
  20. DataTable GetDetailsForEditCustomer(string customerId, string user);
  21. DataRow GetRequiredCustomerDetails(string customerId, string user);
  22. DataTable LoadDataPaymentModeDdl(string sCountryid, string pCountry, string collMode, string agentId, string flag, string user);
  23. DbResult UpdateCustomerDocument(string cdId, string customerId, string fileName, string fileDescription, string fileType, string documentType, string user);
  24. DataTable GetDocumentByCustomerId(string customerId,string fileDescription,string sessionId);
  25. DataSet LoadCustomerDataNew(string user, string customerId, string flag, string sCountryId, string settlementAgent);
  26. DbResult UpdateBenificiarInformation(BenificiaryModel benificiar, string user);
  27. DataTable GetCustomerDetailsWitDT(string customerId, string user);
  28. DataSet GetCustomerInfoFromMembershiId(string user, string membershipId, string receiverId, string rowId);
  29. DataSet GetCustomerAndReceiver(string customerId, string user);
  30. }
  31. }