Esempio n. 1
0
 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);
 }
Esempio n. 2
0
 public HubDispatchDialog(IEntityToType entityToType, ILuisService luis)
 {
     SetField.NotNull(out this.entityToType, nameof(entityToType), entityToType);
     SetField.NotNull(out this.luis, nameof(luis), luis);
 }
Esempio n. 3
0
 public RootDialog(IEntityToType entityToType, ILuisService luis)
     : base(luis)
 {
     SetField.NotNull(out this.entityToType, nameof(entityToType), entityToType);
 }