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