public MSeccion(MDistrito district, int id, string name) { this._id = id; this._district = district; this._name = name; }
public MSeccion(MDistrito district, string name) : this(district, -1, name) { }