示例#1
0
 public MailQueue(IServiceLocator serviceLocator)
 {
     this.serviceLocator  = serviceLocator;
     this.ApplicationUser = DummyUserFactory.CreateDummyUser("MailQueue");
 }
示例#2
0
 public CommandHandlerBase(IServiceLocator serviceLocator, params Type[] commandTypes) : base(serviceLocator, commandTypes)
 {
     ApplicationUser = DummyUserFactory.CreateDummyUser(GetType().Name);
 }
 public EventHandlerBase(IServiceLocator serviceLocator, string name) : base(serviceLocator, name)
 {
     ApplicationUser = DummyUserFactory.CreateDummyUser(name);
 }