public IncentivePaymentService(IIncentivePaymentRepository incentivePaymentRepository,
     ISalesIncentiveSettingsRepository iSalesIncentiveSettingsRepository, IUnitOfWork unitOfWork)
 {
     this._IncentivePaymentRepository = incentivePaymentRepository;
     this._ISalesIncentiveSettingsRepository = iSalesIncentiveSettingsRepository;
     this._UnitOfWork = unitOfWork;
 }
 public SalesIncentiveSettingsService(ISalesIncentiveSettingsRepository salesIncentiveRepository, IUnitOfWork unitOfWork)
 {
     this._salesIncentiveRepository = salesIncentiveRepository;
     this._unitOfWork = unitOfWork;
 }