public AffiliateController(ILocalizationService localizationService,
                            IAffiliateService affiliateService, IAffiliateViewModelService affiliateViewModelService)
 {
     _localizationService       = localizationService;
     _affiliateService          = affiliateService;
     _affiliateViewModelService = affiliateViewModelService;
 }
 public AffiliateController(ITranslationService translationService,
                            IAffiliateService affiliateService, IAffiliateViewModelService affiliateViewModelService,
                            IMediator mediator,
                            IPermissionService permissionService)
 {
     _translationService        = translationService;
     _affiliateService          = affiliateService;
     _affiliateViewModelService = affiliateViewModelService;
     _mediator          = mediator;
     _permissionService = permissionService;
 }