Esempio n. 1
0
 public void excluirPontoMarcacao()
 {
     try
     {
         using (ServicoPontoClient serv = new ServicoPontoClient())
         {
             serv.deletePontoMarcacao(PontoMarcacaoSelected);
             PontoMarcacaoSelected = null;
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }