public ModerationPinService(IHostingEnvironment environment, IMemoryCache cache, PinsContext publicPinContext, ModerateContext moderatePinContext) { this.cache = cache; this.environment = environment; this.publicPinContext = publicPinContext; this.moderatePinContext = moderatePinContext; }
public ModeratorsCrudService(IMemoryCache cache, ModerateContext context) { this.cache = cache; this.context = context; }
public AdminsCrudService(ModerateContext context, IMemoryCache cache) { this.context = context; this.cache = cache; }