public AlarmDispatchDialog(IAlarmService service, IEntityToType entityToType, ILuisService luis, IClock clock)
 {
     SetField.NotNull(out this.service, nameof(service), service);
     SetField.NotNull(out this.entityToType, nameof(entityToType), entityToType);
     SetField.NotNull(out this.luis, nameof(luis), luis);
     SetField.NotNull(out this.clock, nameof(clock), clock);
 }
 public HubDispatchDialog(IEntityToType entityToType, ILuisService luis)
 {
     SetField.NotNull(out this.entityToType, nameof(entityToType), entityToType);
     SetField.NotNull(out this.luis, nameof(luis), luis);
 }
Exemple #3
0
 public RootDialog(IEntityToType entityToType, ILuisService luis)
     : base(luis)
 {
     SetField.NotNull(out this.entityToType, nameof(entityToType), entityToType);
 }