public object get(string key)
        {
            if (key == null)
            {
                throw new ArgumentNullException(nameof(key));
            }

            return(_systemInformationService.Get(key));
        }
示例#2
0
 public object GetSystemStatus(string uid)
 {
     return(_systemStatusService.Get(uid));
 }