public async Task <bool> DeleteOverShortDetailsEX(string id)
 {
     try
     {
         using (var t = new OverShortDetailsEXClient())
         {
             return(await t.DeleteOverShortDetailsEX(id).ConfigureAwait(continueOnCapturedContext: false));
         }
     }
     catch (FaultException <ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }