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.

32 lines
940 B

1 year ago
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.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Business.MobileV2
  10. {
  11. public interface IMobileV2Business
  12. {
  13. JsonRxResponse GetReceiverInformationV2(DateFilterParams search, string customerId, string countryId);
  14. JsonRxResponse RefreshDashboardInformationV2(UserModel model);
  15. CustomerDetailV2 GetCustomerProfile(string userId);
  16. JsonRxResponse CustomerProfile(CustomerProfileV2 profileV2);
  17. JsonRxResponse GetKycSettings(KycRequest kycRequest);
  18. JsonRxResponse SaveKycSettings(KycOption kycRequest);
  19. JsonRxResponse DownLoadStatement(DateFilterParams search, string userId);
  20. JsonRxResponse UpdateCustomerProfile(CustomerDetailV2 profileV2);
  21. //JsonRxResponse UpdateProfile(CustomerDetailV2 req);
  22. }
  23. }