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

using Common.Model.BenificiaryModel;
using Common.Model.CustomerModel;
using Common.Utility;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.Customer
{
public interface ICustomerServices
{
DataRow GetCustomerDetails(string customerId, string user);
DbResult RegisterCustomerNew(OnlineCustomerModel onlineCustomerModel);
DbResult RegisterCustomer(OnlineCustomerModel onlineCustomerModel);
DbResult AddCustomerSignature(string customerId, string user, string fileName, string signaturetype, string signatureId);
DbResult AddCustomerPDFUpload(string customerId, string user, string fileName, string fileType, string rowIdField);
string GetCustomerDetailsForFileUpload(string customerId);
string GetCustomerDetailsForPDFSave(string membershipId, string rowIdField, string type);
DataTable GetAddressByZipCodeNew(string zipCode, string user, string rowId);
DataTable GetDetailsForEditCustomer(string customerId, string user);
DataRow GetRequiredCustomerDetails(string customerId, string user);
DataTable LoadDataPaymentModeDdl(string sCountryid, string pCountry, string collMode, string agentId, string flag, string user);
DbResult UpdateCustomerDocument(string cdId, string customerId, string fileName, string fileDescription, string fileType, string documentType, string user);
DataTable GetDocumentByCustomerId(string customerId,string fileDescription,string sessionId);
DataSet LoadCustomerDataNew(string user, string customerId, string flag, string sCountryId, string settlementAgent);
DbResult UpdateBenificiarInformation(BenificiaryModel benificiar, string user);
DataTable GetCustomerDetailsWitDT(string customerId, string user);
DataSet GetCustomerInfoFromMembershiId(string user, string membershipId, string receiverId, string rowId);
DataSet GetCustomerAndReceiver(string customerId, string customerSearchType, string user);
}
}