private void GetOrderData()
 {
     var f = new FetchOrdersMatchingDate();
     _ordersToDisplay = f.Execute();
     if (_ordersToDisplay == null)
         return;
     DisplayOrders();
 }
        private void GetOrderData()
        {
            var f = new FetchOrdersMatchingDate();

            _ordersToDisplay = f.Execute();
            if (_ordersToDisplay == null)
            {
                return;
            }
            DisplayOrders();
        }
Exemple #3
0
 public RemoveOrderWorkFlow()
 {
     _ordersToDisplay = f.Execute();
     _currentFile     = f.CurrentFile;
 }
 public EditOrderWorkFlow() //constructor
 {
     OrdersToDisplay = f.Execute();
     CurrentFile     = f.CurrentFile;
 }