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.

23 lines
776 B

1 year ago
1 year ago
1 year ago
1 year ago
  1. using Common;
  2. using Common.Model;
  3. using Common.Model.MobileV2;
  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 Repository.MobileV2
  11. {
  12. public interface IMobileV2Repo
  13. {
  14. JsonRxResponse GetReceiverInformationV2(DateFilterParams search,string customerId, string countryid);
  15. JsonRxResponse SaveProfile(string username, string url, string fileName, string fileType);
  16. DataRow GetMembershipId(string userId);
  17. DataRow GetProfileDetails(string customerId);
  18. DataRow GetResidenceType(string customerId);
  19. JsonRxResponse SaveKycSettings(KycOption kycOption);
  20. JsonRxResponse UpdateCustomerProfile(CustomerDetailV2 req);
  21. }
  22. }