StockLocationShellEvent.cs 464 B

1234567891011121314151617181920
  1. using System;
  2. using System.ComponentModel;
  3. namespace PRS.Mobile
  4. {
  5. public class StockLocationShellEventArgs : CancelEventArgs
  6. {
  7. public StockLocationShell[] Locations { get; private set; }
  8. public StockLocationShellEventArgs(params StockLocationShell[] locations)
  9. {
  10. Locations = locations;
  11. }
  12. }
  13. public delegate void StockLocationShellEvent(object sender, StockLocationShellEventArgs args);
  14. }