public DiscountCampaignService(DiscountValidationService discountValidationService,
                                DiscountCodeService discountCodeService,
                                DiscountCampaignRepository discountCampaignRepository,
                                DiscountCodeRepository discountCodeRepository)
 {
     _discountValidationService  = discountValidationService;
     _discountCodeService        = discountCodeService;
     _discountCampaignRepository = discountCampaignRepository;
     _discountCodeRepository     = discountCodeRepository;
 }
 public DiscountCampaignsController(DiscountCampaignService discountCampaignService, DiscountCampaignRepository discountCampaignRepository, DiscountCodeRepository discountCodeRepository)
 {
     _discountCampaignService    = discountCampaignService;
     _discountCampaignRepository = discountCampaignRepository;
     _discountCodeRepository     = discountCodeRepository;
 }
 public PromotionGrpcService(DiscountCampaignRepository discountCampaignRepository, DiscountCodeRepository discountCodeRepository)
 {
     _discountCampaignRepository = discountCampaignRepository;
     _discountCodeRepository     = discountCodeRepository;
 }