public static async Task <bool> updateThresholds(Threshold threshold) { // TODO Do all heavy Processing Here var update = await ThresholdRepository.updateThresholds(threshold); return(true); }
public void SaveAll() { ThresholdRepository.SaveAll(ThresholdSettings); }
public static Threshold getThresholds() { // TODO Do all heavy Processing Here return(ThresholdRepository.getThresholds()); }