Beispiel #1
0
 //Recibe nombre y tipo
 public Grupo(string nombre, ETipoManada tipoManada) : this(nombre)
 {
     Grupo._tipo = tipoManada;
 }
Beispiel #2
0
 //Inicializa el tipo unica
 static Grupo()
 {
     Grupo._tipo = ETipoManada.Unica;
 }
Beispiel #3
0
 public Grupo(string nombre, ETipoManada tipo) : this(nombre)
 {
     Tipo = tipo;
 }
Beispiel #4
0
 private Grupo(string nombre, ETipoManada tipo) : this(nombre)
 {
     Grupo.tipo = tipo;
 }
Beispiel #5
0
 public Grupo(string nombre, ETipoManada tipo) : this()
 {
     this._nombre    = nombre;
     this.TipoManada = tipo;
 }
Beispiel #6
0
 public Grupo(string nombre, ETipoManada tipo) : this(nombre)
 {
     this.nombre = nombre;
     Grupo.Tipo  = tipo;
 }