public void copy(information other) { _code = other._code; _market = other._market; _name = other._name; }
public information(int c, market m, string n) { _code = c; _market = m; _name = n; }