private MappingSet(int mapCategoryId, ActionListMode actionListMode, int[] actionCategoryIds, int[] actionIds) { this._mapCategoryId = mapCategoryId; this._actionListMode = actionListMode; this._actionCategoryIds = actionCategoryIds; this._actionIds = actionIds; }
public MappingSet() { this._mapCategoryId = -1; this._actionCategoryIds = new int[0]; this._actionIds = new int[0]; this._actionListMode = ActionListMode.ActionCategory; }