public UsersController(IUserService service, IPlansService service2, ICMSService service3) : base(service) { this._userService = service; this._plansService = service2; this._cmsService = service3; }
public CMSController(ICMSService service, ICacheProvider cacheProvider, IOptions <SquidexConfig> settings) { _service = service; //_logger = loggerService; _cacheProvider = cacheProvider; _settings = settings.Value; }
public HomeController(ICMSService cms, UserManager <User> userManager, CMSContext context) { _cms = cms; _context = context; _userManager = userManager; }
public HomeController(IUserService uService, ICMSService cmsService) : base(uService) { _cmsService = cmsService; }
public CmsController(IUserService uService, ICMSService cmsService, ITagsService tagsService) : base(uService) { this._cmsService = cmsService; this._tagsService = tagsService; }
public CMSController(ICMSService cmsService, IEmailService emailService) { _cmsService = cmsService; _emailService = emailService; }
public ContentController(ICMSService cMSService) { _cmsService = cMSService ?? throw new ArgumentNullException(nameof(cMSService)); }
public PublicController(IUserService uService, ICMSService cmsService) : base(uService) { this._cmsService = cmsService; }
public CMSApiController(IUserService service, ICMSService serviceCMS) { this._userService = service; this._cmsService = serviceCMS; }
public CMSService_Tests() { _cmsService = Resolve <ICMSService>(); }
public ImageController(ICMSService cmsService, UserManager <User> userManager) { _cmsService = cmsService; _userManager = userManager; }
public CMSController(ICMSService cmsService) { this.cmsService = cmsService; }