correct config xml to upper case C
RevisionConfig property on Revision and RevisionInfo classes
This commit is contained in:
@@ -338,6 +338,16 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
public partial class Revision
|
||||
{
|
||||
private RevisionConfig _MyConfig;
|
||||
public RevisionConfig MyConfig
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_MyConfig == null)
|
||||
_MyConfig = new RevisionConfig(this);
|
||||
return _MyConfig;
|
||||
}
|
||||
}
|
||||
public static Revision GetByItemIDAndRevisionNumber(int itemID, string revisionNumber)
|
||||
{
|
||||
if (!CanGetObject())
|
||||
@@ -482,6 +492,16 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
public partial class RevisionInfo
|
||||
{
|
||||
private RevisionConfig _MyConfig;
|
||||
public RevisionConfig MyConfig
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_MyConfig == null)
|
||||
_MyConfig = new RevisionConfig(this);
|
||||
return _MyConfig;
|
||||
}
|
||||
}
|
||||
#region new bozo
|
||||
[Serializable()]
|
||||
protected class ItemCriteria
|
||||
|
Reference in New Issue
Block a user