ICommand.cs 169 B

1234567
  1. namespace Blue
  2. {
  3. public interface ICommand:ICanGetService,ICanGetModel,ICanGetUtility,ICanTriggerEvent,ICanSendCommand
  4. {
  5. void OnExcute();
  6. }
  7. }