public void excluirPontoHorario()
 {
     try
     {
         using (ServicoPontoClient serv = new ServicoPontoClient())
         {
             serv.deletePontoHorario(PontoHorarioSelected);
             PontoHorarioSelected = null;
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }