C# Class SobekCM_Resource_Database.SobekCM_Item_Database.Save_Item_Args

Stores the arguments from saving a bibliographic item to the SobekCM databse
Show file Open project: MarkVSullivan/SobekCM-Web-Application

Public Properties

Property Type Description
Existing bool
ItemID int
New_VID string

Public Methods

Method Description
Save_Item_Args ( int ItemID, bool Existing, string New_VID ) : System

Constructor for a new instance of the Save_Item_Args class

Method Details

Save_Item_Args() public method

Constructor for a new instance of the Save_Item_Args class
public Save_Item_Args ( int ItemID, bool Existing, string New_VID ) : System
ItemID int Item ID for this item
Existing bool TRUE if this item already existed, FALSE otherwise
New_VID string New VID for this sabed item
return System

Property Details

Existing public property

TRUE if this item already existed, FALSE otherwise
public bool Existing
return bool

ItemID public property

Item ID for this item
public int ItemID
return int

New_VID public property

New VID for this item
public string New_VID
return string