| 1234567891011121314151617181920 |
- using System;
- using System.ComponentModel;
- namespace PRS.Mobile
- {
- public class StockLocationShellEventArgs : CancelEventArgs
- {
- public StockLocationShell[] Locations { get; private set; }
- public StockLocationShellEventArgs(params StockLocationShell[] locations)
- {
- Locations = locations;
- }
-
- }
- public delegate void StockLocationShellEvent(object sender, StockLocationShellEventArgs args);
-
- }
|