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.

44 lines
2.1 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
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 RegisterCustomer(OnlineCustomerModel onlineCustomerModel);
  17. DbResult AddCustomerSignature(string customerId, string user, string fileName, string signaturetype, string signatureId);
  18. DbResult AddCustomerPDFUpload(string customerId, string user, string fileName, string fileType, string rowIdField);
  19. string GetCustomerDetailsForFileUpload(string customerId);
  20. string GetCustomerDetailsForPDFSave(string membershipId, string rowIdField, string type);
  21. DataTable GetAddressByZipCodeNew(string zipCode, string user, string rowId);
  22. DataTable GetDetailsForEditCustomer(string customerId, string user);
  23. DataRow GetRequiredCustomerDetails(string customerId, string user);
  24. DataTable LoadDataPaymentModeDdl(string sCountryid, string pCountry, string collMode, string agentId, string flag, string user);
  25. DbResult UpdateCustomerDocument(string cdId, string customerId, string fileName, string fileDescription, string fileType, string documentType, string user);
  26. DataTable GetDocumentByCustomerId(string customerId,string fileDescription,string sessionId);
  27. DataSet LoadCustomerDataNew(string user, string customerId, string flag, string sCountryId, string settlementAgent);
  28. DbResult UpdateBenificiarInformation(BenificiaryModel benificiar, string user);
  29. DataTable GetCustomerDetailsWitDT(string customerId, string user);
  30. DataSet GetCustomerInfoFromMembershiId(string user, string membershipId, string receiverId, string rowId);
  31. DataSet GetCustomerAndReceiver(string customerId, string customerSearchType, string user);
  32. }
  33. }