Beispiel #1
0
        public void finds_the_missing_services()
        {
            var plugin = new MissingService(typeof(object));

            theConfiguration.RegisterError(plugin);

            theConfiguration.MissingServices.ShouldHaveTheSameElementsAs(plugin);
        }
Beispiel #2
0
 private void CreateServices()
 {
     Output       = new OutputService(this);
     System       = new SystemService(this);
     Status       = new StatusService(this);
     Statistics   = new StatisticsService(this);
     Missing      = new MissingService(this);
     Team         = new TeamService(this);
     Extended     = new ExtendedService(this);
     Favourite    = new FavouriteService(this);
     Insolation   = new InsolationService(this);
     Supply       = new SupplyService(this);
     Search       = new SearchService(this);
     Notification = new NotificationService(this);
 }
Beispiel #3
0
 public MissingController(DBContext context)
 {
     service = new MissingService(context);
 }