public void excluirEstoqueContagemCabecalho()
 {
     try
     {
         using (ServicoEstoqueClient serv = new ServicoEstoqueClient())
         {
             serv.deleteEstoqueContagemCabecalho(EstoqueContagemCabecalhoSelected);
             EstoqueContagemCabecalhoSelected = null;
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }