public Action() { _actionID = 0; _type = ACTIONTYPE.purchase; _applicationID = 0; _status = ACTIONSTATUS.outstanding; _notes = ""; }
/// <summary> /// Copy constructor /// </summary> /// <param name="other"></param> public Action(Action other) { _actionID = other._actionID; _applicationID = other._applicationID; _applicationName = other._applicationName; _associatedAssets = other._associatedAssets; _notes = other._notes; _status = other._status; _type = other._type; }
public Action(ACTIONTYPE type, int applicationID, string applicationName, ACTIONSTATUS status, string notes) : this() { _type = type; _applicationID = applicationID; _applicationName = applicationName; _associatedAssets = ""; _status = status; _notes = notes; }