CSLA - R to Z

This commit is contained in:
2026-09-14 15:30:10 -04:00
parent d238d6aed2
commit 1c6f3e3e3c
32 changed files with 1978 additions and 4455 deletions
@@ -13,8 +13,6 @@ using System.Data;
using System.Data.SqlClient;
using Csla;
using Csla.Data;
using System.Configuration;
using System.IO;
using System.ComponentModel;
using System.Collections.Generic;
namespace VEPROMS.CSLA.Library
@@ -28,14 +26,12 @@ namespace VEPROMS.CSLA.Library
public partial class SessionInfo : ReadOnlyBase<SessionInfo>, IDisposable
{
public event SessionInfoEvent Changed;
private void OnChange()
{
if (Changed != null) Changed(this);
}
private void OnChange() => Changed?.Invoke(this);
#region Log4Net
private static readonly log4net.ILog _MyLog = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
#endregion
#region Collection
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0044:Add readonly modifier", Justification = "Keeping Collections Not ReadOnly")]
private static List<SessionInfo> _CacheList = new List<SessionInfo>();
protected static void AddToCache(SessionInfo sessionInfo)
{
@@ -45,6 +41,7 @@ namespace VEPROMS.CSLA.Library
{
while (_CacheList.Contains(sessionInfo)) _CacheList.Remove(sessionInfo); // In RemoveFromCache
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0044:Add readonly modifier", Justification = "Keeping Collections Not ReadOnly")]
private static Dictionary<string, List<SessionInfo>> _CacheByPrimaryKey = new Dictionary<string, List<SessionInfo>>();
private static void ConvertListToDictionary()
{
@@ -74,21 +71,8 @@ namespace VEPROMS.CSLA.Library
#endregion
#region Business Methods
private string _ErrorMessage = string.Empty;
public string ErrorMessage
{
get { return _ErrorMessage; }
}
public string ErrorMessage => _ErrorMessage;
protected Session _Editable;
private IVEHasBrokenRules HasBrokenRules
{
get
{
IVEHasBrokenRules hasBrokenRules = null;
if (_Editable != null)
hasBrokenRules = _Editable.HasBrokenRules;
return hasBrokenRules;
}
}
private int _SessionID;
[System.ComponentModel.DataObjectField(true, true)]
public int SessionID
@@ -153,32 +137,19 @@ namespace VEPROMS.CSLA.Library
return _ProcessID;
}
}
// CSLATODO: Replace base SessionInfo.ToString function as necessary
/// <summary>
/// Overrides Base ToString
/// </summary>
/// <returns>A string representation of current SessionInfo</returns>
//public override string ToString()
//{
// return base.ToString();
//}
// CSLATODO: Check SessionInfo.GetIdValue to assure that the ID returned is unique
/// <summary>
/// Overrides Base GetIdValue - Used internally by CSLA to determine equality
/// </summary>
/// <returns>A Unique ID for the current SessionInfo</returns>
protected override object GetIdValue()
{
return MySessionInfoUnique; // Absolutely Unique ID
}
protected override object GetIdValue() => MySessionInfoUnique; // Absolutely Unique ID
#endregion
#region Factory Methods
private static int _SessionInfoUnique = 0;
private static int SessionInfoUnique
{ get { return ++_SessionInfoUnique; } }
private int _MySessionInfoUnique = SessionInfoUnique;
public int MySessionInfoUnique // Absolutely Unique ID - Info
{ get { return _MySessionInfoUnique; } }
private static int SessionInfoUnique => ++_SessionInfoUnique;
private readonly int _MySessionInfoUnique = SessionInfoUnique;
// Absolutely Unique ID - Info
public int MySessionInfoUnique => _MySessionInfoUnique;
protected SessionInfo()
{/* require use of factory methods */
AddToCache(this);
@@ -187,15 +158,11 @@ namespace VEPROMS.CSLA.Library
private static int _CountCreated = 0;
private static int _CountDisposed = 0;
private static int _CountFinalized = 0;
private static int IncrementCountCreated
{ get { return ++_CountCreated; } }
private int _CountWhenCreated = IncrementCountCreated;
public static int CountCreated
{ get { return _CountCreated; } }
public static int CountNotDisposed
{ get { return _CountCreated - _CountDisposed; } }
public static int CountNotFinalized
{ get { return _CountCreated - _CountFinalized; } }
private static int IncrementCountCreated => ++_CountCreated;
private readonly int _CountWhenCreated = IncrementCountCreated;
public static int CountCreated => _CountCreated;
public static int CountNotDisposed => _CountCreated - _CountDisposed;
public static int CountNotFinalized => _CountCreated - _CountFinalized;
~SessionInfo()
{
_CountFinalized++;
@@ -212,10 +179,7 @@ namespace VEPROMS.CSLA.Library
if (listSessionInfo.Count == 0) // If there are no items left in the list
_CacheByPrimaryKey.Remove(SessionID.ToString()); // remove the list
}
public virtual Session Get()
{
return _Editable = Session.Get(_SessionID);
}
public virtual Session Get() => _Editable = Session.Get(_SessionID);
public static void Refresh(Session tmp)
{
string key = tmp.SessionID.ToString();
@@ -237,8 +201,6 @@ namespace VEPROMS.CSLA.Library
}
public static SessionInfo Get(int sessionID)
{
//if (!CanGetObject())
// throw new System.Security.SecurityException("User not authorized to view a Session");
try
{
SessionInfo tmp = GetCachedByPrimaryKey(sessionID);
@@ -277,13 +239,9 @@ namespace VEPROMS.CSLA.Library
[Serializable()]
protected class PKCriteria
{
private int _SessionID;
public int SessionID
{ get { return _SessionID; } }
public PKCriteria(int sessionID)
{
_SessionID = sessionID;
}
private readonly int _SessionID;
public int SessionID => _SessionID;
public PKCriteria(int sessionID) => _SessionID = sessionID;
}
private void ReadData(SafeDataReader dr)
{
@@ -346,7 +304,7 @@ namespace VEPROMS.CSLA.Library
#endregion
// Standard Refresh
#region extension
SessionInfoExtension _SessionInfoExtension = new SessionInfoExtension();
readonly SessionInfoExtension _SessionInfoExtension = new SessionInfoExtension();
[Serializable()]
partial class SessionInfoExtension : extensionBase { }
[Serializable()]
@@ -362,10 +320,10 @@ namespace VEPROMS.CSLA.Library
{
public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destType)
{
if (destType == typeof(string) && value is SessionInfo)
if (destType == typeof(string) && value is SessionInfo info)
{
// Return the ToString value
return ((SessionInfo)value).ToString();
return info.ToString();
}
return base.ConvertTo(context, culture, value, destType);
}