public FreeProductService(IFreeProductRepository FreeProductRepository,
     IChartOfProductRepository ChartOfProductRepository, IUnitOfMeasurementRepository UnitOfMeasurementRepository,
     IUnitOfWork unitOfWork)
 {
     this._FreeProductRepository = FreeProductRepository;
     this._ChartOfProductRepository = ChartOfProductRepository;
     this._UnitOfMeasurementRepository = UnitOfMeasurementRepository;
     this._UnitOfWork = unitOfWork;
 }
 public FreeProductReportService(IFreeProductRepository freeProductRepository, IUnitOfWork unitOfWork)
 {
     this._freeProductRepository = freeProductRepository;
     this._unitOfWork = unitOfWork;
 }
 public FreeItemCheckerService(IFreeProductRepository freeProductRepository)
 {
     _freeProductRepository = freeProductRepository;
 }