Beispiel #1
0
 public List <EmailRecipients> GetEmailRecipients()
 {
     return(FacilityContext._getEmailRecipients(this));
 }
Beispiel #2
0
 public List <ModbusDevice> GetAllDevices()
 {
     return(FacilityContext._getAllDevices(this));
 }
Beispiel #3
0
 public async Task <List <ModbusDevice> > GetAllDevicesAsync()
 {
     return(await FacilityContext._getAllDevicesAsync(this));
 }
Beispiel #4
0
 public async Task <List <EmailRecipients> > GetEmailRecipientsAsync()
 {
     return(await FacilityContext._getEmailRecipientsAsync(this));
 }
Beispiel #5
0
 public async Task <List <TankScale> > GetAllNHControllersAsync()
 {
     return(await FacilityContext._getAllNHControllersAsync(this));
 }
Beispiel #6
0
 public List <TankScale> GetAllNHControllers()
 {
     return(FacilityContext._getAllNHControllers(this));
 }
Beispiel #7
0
 public async Task <List <MonitorBox> > GetAllMonitorBoxsAsync()
 {
     return(await FacilityContext._getAllMonitorBoxsAsync(this));
 }
Beispiel #8
0
        public async Task <TankScale> GetNHControllerAsync(string identifier, bool tracking)
        {
            var option = (tracking) ? QueryTrackingBehavior.TrackAll : QueryTrackingBehavior.NoTracking;

            return(await FacilityContext._getNHControllerAsync(this, identifier, option));
        }
Beispiel #9
0
 public async Task <List <H2Generator> > GetAllGeneratorsAsync()
 {
     return(await FacilityContext._getAllGeneratorsAsync(this));
 }
Beispiel #10
0
 public List <H2Generator> GetAllGenerators()
 {
     return(FacilityContext._getAllGenerators(this));
 }
Beispiel #11
0
        public MonitorBox GetMonitorBox(string identifier, bool tracking)
        {
            var option = (tracking) ? QueryTrackingBehavior.TrackAll : QueryTrackingBehavior.NoTracking;

            return(FacilityContext._getMonitorBox(this, identifier, option));
        }
Beispiel #12
0
        public async Task <MonitorBox> GetMonitorBoxAsync(string identifier, bool tracking)
        {
            var option = (tracking) ? QueryTrackingBehavior.TrackAll : QueryTrackingBehavior.NoTracking;

            return(await FacilityContext._getMonitorBoxAsync(this, identifier, option));
        }
Beispiel #13
0
        public TankScale GetNHController(string identifier, bool tracking)
        {
            var option = (tracking) ? QueryTrackingBehavior.TrackAll : QueryTrackingBehavior.NoTracking;

            return(FacilityContext._getNHController(this, identifier, option));
        }
Beispiel #14
0
 public List <AlertSetting> GetAlertSettings()
 {
     return(FacilityContext._getAlertSettins(this));
 }
Beispiel #15
0
 public List <MonitorBox> GetAllMonitorBoxs()
 {
     return(FacilityContext._getAllMonitorBoxs(this));
 }
Beispiel #16
0
 public async Task <List <AlertSetting> > GetAlertSettingsAsync()
 {
     return(await FacilityContext._getAlertSettinsAsync(this));
 }
Beispiel #17
0
        public H2Generator GetGenerator(string identifier, bool tracking)
        {
            var option = (tracking) ? QueryTrackingBehavior.TrackAll : QueryTrackingBehavior.NoTracking;

            return(FacilityContext._getGenerator(this, identifier, option));
        }