Пример #1
0
		/// <exception cref="System.Exception"></exception>
		protected override void Store()
		{
			QueryByInterface.Ferrari f430 = new QueryByInterface.Ferrari("F430");
			QueryByInterface.Ferrari f450 = new QueryByInterface.Ferrari("F450");
			Store(f430);
			Store(f450);
			QueryByInterface.Bmw serie5 = new QueryByInterface.Bmw("Serie 5");
			QueryByInterface.Bmw serie7 = new QueryByInterface.Bmw("Serie 7");
			Store(serie5);
			Store(serie7);
		}
Пример #2
0
 /// <exception cref="System.Exception"></exception>
 protected override void Store()
 {
     QueryByInterface.Ferrari f430 = new QueryByInterface.Ferrari("F430");
     QueryByInterface.Ferrari f450 = new QueryByInterface.Ferrari("F450");
     Store(f430);
     Store(f450);
     QueryByInterface.Bmw serie5 = new QueryByInterface.Bmw("Serie 5");
     QueryByInterface.Bmw serie7 = new QueryByInterface.Bmw("Serie 7");
     Store(serie5);
     Store(serie7);
 }