Ejemplo n.º 1
0
 public bool ConfigChangeStatus(string code, string status)
 {
     try
     {
         var configStore = new ConfigStore();
         var dt          = configStore.ConfigChangeStatus(code, status);
         if (dt)
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (Exception)
     {
         return(false);
     }
 }