MongoDB store implementation for laget.Limiter...
This example is shown using Autofac since this is the go-to IoC for us.
builder.Register<ISomeLimit>(c =>
new AuthorizationLimit(new MongoStore(new MongoUrl(c.Resolve<IConfiguration>().GetConnectionString("MongoConnectionString")), "authorization.calls"),
new StandardLimit(300, TimeSpan.FromHours(3)))
).SingleInstance();