public void excluirContabilLote()
 {
     try
     {
         using (ServicoContabilidadeClient serv = new ServicoContabilidadeClient())
         {
             serv.deleteContabilLote(ContabilLoteSelected);
             ContabilLoteSelected = null;
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }