Пример #1
0
        public static async Task <bool> updateThresholds(Threshold threshold)
        {
            // TODO Do all heavy Processing Here
            var update = await ThresholdRepository.updateThresholds(threshold);

            return(true);
        }
Пример #2
0
 public void SaveAll()
 {
     ThresholdRepository.SaveAll(ThresholdSettings);
 }
Пример #3
0
        public static Threshold getThresholds()
        {
            // TODO Do all heavy Processing Here

            return(ThresholdRepository.getThresholds());
        }