public void TestInitialize()
 {
     this.baggageRepository = TestObjectFactoryRepositories.GetBaggageRepository();
     this.baggageServices   = new BaggageServices(this.baggageRepository);
     this.bag = new Baggage()
     {
         Type      = BaggageType.Cabin,
         Price     = 1m,
         BookingId = 1
     };
 }