Exemplo n.º 1
0
        public DateTime GetNextThermalDesinfect()
        {
            var nextTermalTime = HttpGet <int>(EndpointPaths.DHWA_THERMAL_DESINFECT_TIME_ENDPOINT_PATH);
            var nextTermalDay  = HttpGet <string>(EndpointPaths.DHWA_THERMAL_DESINFECT_WEEKDAY_ENDPOINT_PATH);

            return(nextTermalDay != null?NefitEasyUtils.GetNextDate(nextTermalDay, nextTermalTime) : new DateTime());
        }