Exemple #1
0
 public WeatherRepositoryTest()
 {
     context           = factory.GetUAAContext();
     weatherRepository = new WeatherRepository(context);
 }
 public PlanesRepository(UAAContext context)
 {
     this.context = context;
 }
Exemple #3
0
 public WeatherRepository(UAAContext context)
 {
     this.context = context;
 }
 public FlightsRepository(UAAContext context)
 {
     this.context = context;
 }
Exemple #5
0
        public FlightsRepositoryTest()
        {
            context = factory.GetUAAContext();

            flightsRepository = new FlightsRepository(context);
        }
        public AirlineRepositoryTest()
        {
            context = factory.GetUAAContext();

            airlineRepository = new AirlineRepository(context);
        }
Exemple #7
0
 public AirlineRepository(UAAContext context)
 {
     this.context = context;
 }
        public PlaneRepositoryTest()
        {
            context = factory.GetUAAContext();

            planesRepository = new PlanesRepository(context);
        }