added a Refresh method to refresh AnnotationTypeInfoList

added a Refresh method to refresh StageInfoList
This commit is contained in:
John Jenko 2012-03-16 15:49:09 +00:00
parent 119769f31f
commit 12eaf94c09
2 changed files with 16 additions and 0 deletions

View File

@ -66,6 +66,14 @@ namespace VEPROMS.CSLA.Library
return _Name;
}
}
public partial class AnnotationTypeInfoList
{
public static void Refresh()
{
Reset();
_AnnotationTypeInfoList = Get();
}
}
public partial class Annotation
{
/// <summary>

View File

@ -1518,4 +1518,12 @@ namespace VEPROMS.CSLA.Library
DataPortal_Fetch(new PKCriteria(cai.ContentID));
}
}
public partial class StageInfoList
{
public static void Refresh()
{
Reset();
_StageInfoList = Get();
}
}
}