public ProductService(INumeratorService numerator, IImageService images, ISubcategoryService subcategories, IProductPlacementService placement, ApiDbContext db)
 {
     this.numerator = numerator;
     this.images    = images;
     this.placement = placement;
     this.db        = db;
 }
 public OrderService(ApiDbContext db, INumeratorService numerator, IOrderLogService logger)
 {
     this.db        = db;
     this.numerator = numerator;
     this.logger    = logger;
 }