Example #1
0
 public Action()
 {
     _actionID      = 0;
     _type          = ACTIONTYPE.purchase;
     _applicationID = 0;
     _status        = ACTIONSTATUS.outstanding;
     _notes         = "";
 }
Example #2
0
 /// <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;
 }
Example #3
0
 public Action(ACTIONTYPE type, int applicationID, string applicationName, ACTIONSTATUS status, string notes)
     : this()
 {
     _type             = type;
     _applicationID    = applicationID;
     _applicationName  = applicationName;
     _associatedAssets = "";
     _status           = status;
     _notes            = notes;
 }