public void Delete()
 {
     try
     {
         using (ProgramaPL pl = new ProgramaPL())
         {
             pl.SP_DELETAR_PROGRAMA(this.Instance.Codigo);
         };
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }