public StatusController(IStoreDataAsKeyValue store) : base(store) { Check.NotNull(store, "store"); this.reservationEngine = new ReservationEngine(() => CurrentUser, new ReservationProvider(store)); Check.InjectedMembers(this); }
public ReservationController(IStoreDataAsKeyValue store) : base(store) { Check.NotNull(store, "store"); this.reservationEngine = new ReservationEngine(() => CurrentUser, new ReservationProvider(store)); Check.InjectedMembers(this); }
public ActiveDirectoryAuthenticator(IStoreDataAsKeyValue store) { Check.NotNull(store, "store"); this.store = store; string configDomain = ConfigurationManager.AppSettings["ActiveDirectory.Domain"]; if (!string.IsNullOrWhiteSpace(configDomain)) { this.domain = configDomain; this.domainConnectionString = string.Format("LDAP://{0}", configDomain); } Check.InjectedMembers(this); }
public ReservationProvider(IStoreDataAsKeyValue store) { Check.NotNull(store, "store"); this.dataStore = store; reservationStore = this.dataStore.Load().Where(d => d.Value is Reservation); }
public BaseController(IStoreDataAsKeyValue store) { Check.NotNull(store, "store"); this.store = store; Check.InjectedMembers(this); }
public UserController(IStoreDataAsKeyValue store) : base(store) { }
public DummyAuthenticator(IStoreDataAsKeyValue store) { Check.NotNull(store, "store"); this.store = store; Check.InjectedMembers(this); }
public MatchDataController(IStoreDataAsKeyValue dataStore) { this.dataStore = dataStore; }