Beispiel #1
0
        public virtual void doChanges(SeppukuModel model)
        {
            SeppukuServiceSoapClient client = new SeppukuServiceSoapClient();
            OrderInfo info = new OrderInfo();

            info.orderType         = this.Type;
            info.sourceTileId      = this.Source.tileId;
            info.destinationTileId = this.Destination.tileId;
            info.unitCount         = this.UnitCount;
            client.addOrderAsync(info);
        }
Beispiel #2
0
		public virtual void doChanges(SeppukuModel model)
		{
			SeppukuServiceSoapClient client = new SeppukuServiceSoapClient();
			OrderInfo info = new OrderInfo();
			info.orderType = this.Type;
			info.sourceTileId = this.Source.tileId;
			info.destinationTileId = this.Destination.tileId;
			info.unitCount = this.UnitCount;
			client.addOrderAsync(info);
		}