Beispiel #1
0
 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;
 }
Beispiel #3
0
 public AdminsCrudService(ModerateContext context, IMemoryCache cache)
 {
     this.context = context;
     this.cache   = cache;
 }