This commit is contained in:
Jsj
2008-05-16 18:07:47 +00:00
parent 9d0b3cd543
commit cda0291dbd
116 changed files with 4257 additions and 3382 deletions

View File

@@ -59,9 +59,9 @@ namespace VEPROMS.CSLA.Library
}
public ItemDocVersion Add(Folder myFolder, string name) // One to Many
{
ItemDocVersion docVersion = ItemDocVersion.New(myFolder, name);
this.Add(docVersion);
return docVersion;
ItemDocVersion docVersion = ItemDocVersion.New(myFolder, name);
this.Add(docVersion);
return docVersion;
}
public void Remove(DocVersion myDocVersion)
{
@@ -94,8 +94,8 @@ namespace VEPROMS.CSLA.Library
{
get
{
IVEHasBrokenRules hasBrokenRules=null;
foreach(ItemDocVersion itemDocVersion in this)
IVEHasBrokenRules hasBrokenRules = null;
foreach (ItemDocVersion itemDocVersion in this)
if ((hasBrokenRules = itemDocVersion.HasBrokenRules) != null) return hasBrokenRules;
return hasBrokenRules;
}
@@ -104,8 +104,8 @@ namespace VEPROMS.CSLA.Library
{
get
{
IVEHasBrokenRules hasBrokenRules = HasBrokenRules;
return (hasBrokenRules != null ? hasBrokenRules.BrokenRules : null);
IVEHasBrokenRules hasBrokenRules = HasBrokenRules;
return (hasBrokenRules != null ? hasBrokenRules.BrokenRules : null);
}
}
#endregion
@@ -165,7 +165,7 @@ namespace VEPROMS.CSLA.Library
private void DataPortal_Fetch(ItemIDCriteria criteria)
{
this.RaiseListChangedEvents = false;
if(_MyLog.IsDebugEnabled)_MyLog.DebugFormat("[{0}] ItemDocVersions.DataPortal_FetchItemID", GetHashCode());
if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] ItemDocVersions.DataPortal_FetchItemID", GetHashCode());
try
{
using (SqlConnection cn = Database.VEPROMS_SqlConnection)
@@ -184,7 +184,7 @@ namespace VEPROMS.CSLA.Library
}
catch (Exception ex)
{
if(_MyLog.IsErrorEnabled)_MyLog.Error("ItemDocVersions.DataPortal_FetchItemID", ex);
if (_MyLog.IsErrorEnabled) _MyLog.Error("ItemDocVersions.DataPortal_FetchItemID", ex);
throw new DbCslaException("ItemDocVersions.DataPortal_Fetch", ex);
}
this.RaiseListChangedEvents = true;
@@ -269,8 +269,8 @@ namespace VEPROMS.CSLA.Library
/// </summary>
public partial class ItemDocVersionsPropertyDescriptor : vlnListPropertyDescriptor
{
private ItemDocVersion Item { get { return (ItemDocVersion) _Item;} }
public ItemDocVersionsPropertyDescriptor(ItemDocVersions collection, int index):base(collection, index){;}
private ItemDocVersion Item { get { return (ItemDocVersion)_Item; } }
public ItemDocVersionsPropertyDescriptor(ItemDocVersions collection, int index) : base(collection, index) { ;}
}
#endregion
#region Converter
@@ -281,7 +281,7 @@ namespace VEPROMS.CSLA.Library
if (destType == typeof(string) && value is ItemDocVersions)
{
// Return department and department role separated by comma.
return ((ItemDocVersions) value).Items.Count.ToString() + " DocVersions";
return ((ItemDocVersions)value).Items.Count.ToString() + " DocVersions";
}
return base.ConvertTo(context, culture, value, destType);
}