using Common; using Common.Model; using Common.Model.MobileV2; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.MobileV2 { public interface IMobileV2Business { JsonRxResponse GetReceiverInformationV2(DateFilterParams search, string customerId, string countryId); JsonRxResponse RefreshDashboardInformationV2(UserModel model); CustomerDetailV2 GetCustomerProfile(string userId); JsonRxResponse CustomerProfile(CustomerProfileV2 profileV2); JsonRxResponse GetKycSettings(KycRequest kycRequest); JsonRxResponse SaveKycSettings(KycOption kycRequest); JsonRxResponse DownLoadStatement(DateFilterParams search, string userId); JsonRxResponse UpdateCustomerProfile(CustomerDetailV2 profileV2); //JsonRxResponse UpdateProfile(CustomerDetailV2 req); } }