/V2/trunk/RI/Silverlight/StockTraderRI.Modules.Position.Silverlight/Orders/OrdersPresentationModel.Silverlight.cs
# · C# · 40 lines · 22 code · 2 blank · 16 comment · 0 complexity · 275ffb656d6db0c30802f3cc094a73ca MD5 · raw file
- //===================================================================================
- // Microsoft patterns & practices
- // Composite Application Guidance for Windows Presentation Foundation and Silverlight
- //===================================================================================
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
- // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
- // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
- // FITNESS FOR A PARTICULAR PURPOSE.
- //===================================================================================
- // The example companies, organizations, products, domain names,
- // e-mail addresses, logos, people, places, and events depicted
- // herein are fictitious. No association with any real company,
- // organization, product, domain name, email address, logo, person,
- // places, or events is intended or should be inferred.
- //===================================================================================
- using Microsoft.Practices.Composite.Presentation.Commands;
- using StockTraderRI.Infrastructure;
-
- namespace StockTraderRI.Modules.Position.Orders
- {
- public partial class OrdersPresentationModel
- {
- public CompositeCommand SubmitAllOrdersCommand
- {
- get
- {
- return StockTraderRICommands.SubmitAllOrdersCommand;
- }
- }
-
- public CompositeCommand CancelAllOrdersCommand
- {
- get
- {
- return StockTraderRICommands.CancelAllOrdersCommand;
- }
- }
- }
- }