using Common; using Common.Model; using Common.Model.MobileV2; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Repository.MobileV2 { public interface IMobileV2Repo { JsonRxResponse GetReceiverInformationV2(DateFilterParams search,string customerId, string countryid); JsonRxResponse SaveProfile(string username, string url, string fileName, string fileType); DataRow GetMembershipId(string userId); DataRow GetProfileDetails(string customerId); DataRow GetResidenceType(string customerId); JsonRxResponse SaveKycSettings(KycOption kycOption); JsonRxResponse UpdateCustomerProfile(CustomerDetailV2 req); } }