Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 16, 2014 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/5a5f8bce470a6d859c3e to your computer and use it in GitHub Desktop.
Save Fhernd/5a5f8bce470a6d859c3e to your computer and use it in GitHub Desktop.
Representa la enumeración EstadoCivil del modelo del mundo del problema.
// ===++===
//
// OrtizOL
//
// ===--===
/*============================================================
//
// Clase: EstadoCivil.cs
//
// Propósito: Implementar la enumeración con los estados
// civil del(/la) encuestado(a)
//
============================================================*/
using System;
namespace N1_Encuesta.Modelo
{
/// <summary>
/// Enumeración los estados civiles: Soltero, Casado.
/// </summary>
public enum EstadoCivil
{
Soltero = 1,
Casado =2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment