public void AgregarReceptor(string rfc, string nombre)
 {
     try
     {
         EntidadReceptor receptor = new EntidadReceptor();
         string mensaje;
         receptor.AgregarReceptor(rfc, nombre, out mensaje);
         Mensaje.Mostrar(this, mensaje);
         CargarReceptores();
     }
     catch (Exception ex)
     {
         Mensaje.Mostrar(this, ex.Message);
     }
 }