public Exception CheckState()
 {
     try
     {
         _channelService.CheckState();
         return(null);
     }
     catch (Exception ex)
     {
         LogError(ex);
         return(ex);
     }
 }