Ejemplo n.º 1
0
 public StoreTransaction(Arbinada.GenieLamp.Warehouse.Services.Warehouse.StoreTransactionProxy source)
 {
     if (source == null)
     {
         throw new NullReferenceException("Source proxy object cannot be null");
     }
     this.Proxy = source;
 }
Ejemplo n.º 2
0
 public StoreTransaction()
 {
     using (StoreTransactionServiceClient client = new StoreTransactionServiceClient())
     {
         Proxy = client.CreateStoreTransaction();
         client.Close();
     }
 }