This commit is contained in:
parent
4dbbcf0478
commit
c5dd724569
1171
PROMS/VEPROMS.CSLA.Library/Generated/Association.cs
Normal file
1171
PROMS/VEPROMS.CSLA.Library/Generated/Association.cs
Normal file
File diff suppressed because it is too large
Load Diff
459
PROMS/VEPROMS.CSLA.Library/Generated/AssociationInfo.cs
Normal file
459
PROMS/VEPROMS.CSLA.Library/Generated/AssociationInfo.cs
Normal file
@ -0,0 +1,459 @@
|
||||
// ========================================================================
|
||||
// Copyright 2007 - Volian Enterprises, Inc. All rights reserved.
|
||||
// Volian Enterprises - Proprietary Information - DO NOT COPY OR DISTRIBUTE
|
||||
// ------------------------------------------------------------------------
|
||||
// $Workfile: $ $Revision: $
|
||||
// $Author: $ $Date: $
|
||||
//
|
||||
// $History: $
|
||||
// ========================================================================
|
||||
|
||||
using System;
|
||||
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
|
||||
{
|
||||
public delegate void AssociationInfoEvent(object sender);
|
||||
/// <summary>
|
||||
/// AssociationInfo Generated by MyGeneration using the CSLA Object Mapping template
|
||||
/// </summary>
|
||||
[Serializable()]
|
||||
[TypeConverter(typeof(AssociationInfoConverter))]
|
||||
public partial class AssociationInfo : ReadOnlyBase<AssociationInfo>, IDisposable
|
||||
{
|
||||
public event AssociationInfoEvent Changed;
|
||||
private void OnChange()
|
||||
{
|
||||
if (Changed != null) Changed(this);
|
||||
}
|
||||
#region Log4Net
|
||||
private static readonly log4net.ILog _MyLog = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
||||
#endregion
|
||||
#region Collection
|
||||
private static List<AssociationInfo> _CacheList = new List<AssociationInfo>();
|
||||
protected static void AddToCache(AssociationInfo associationInfo)
|
||||
{
|
||||
if (!_CacheList.Contains(associationInfo)) _CacheList.Add(associationInfo); // In AddToCache
|
||||
}
|
||||
protected static void RemoveFromCache(AssociationInfo associationInfo)
|
||||
{
|
||||
while (_CacheList.Contains(associationInfo)) _CacheList.Remove(associationInfo); // In RemoveFromCache
|
||||
}
|
||||
private static Dictionary<string, List<AssociationInfo>> _CacheByPrimaryKey = new Dictionary<string, List<AssociationInfo>>();
|
||||
private static void ConvertListToDictionary()
|
||||
{
|
||||
List<AssociationInfo> remove = new List<AssociationInfo>();
|
||||
foreach (AssociationInfo tmp in _CacheList)
|
||||
{
|
||||
if (!_CacheByPrimaryKey.ContainsKey(tmp.AssociationID.ToString()))
|
||||
{
|
||||
_CacheByPrimaryKey[tmp.AssociationID.ToString()] = new List<AssociationInfo>(); // Add new list for PrimaryKey
|
||||
}
|
||||
_CacheByPrimaryKey[tmp.AssociationID.ToString()].Add(tmp); // Add to Primary Key list
|
||||
remove.Add(tmp);
|
||||
}
|
||||
foreach (AssociationInfo tmp in remove)
|
||||
RemoveFromCache(tmp);
|
||||
}
|
||||
internal static void AddList(AssociationInfoList lst)
|
||||
{
|
||||
foreach (AssociationInfo item in lst) AddToCache(item);
|
||||
}
|
||||
protected static AssociationInfo GetCachedByPrimaryKey(int associationID)
|
||||
{
|
||||
ConvertListToDictionary();
|
||||
string key = associationID.ToString();
|
||||
if (_CacheByPrimaryKey.ContainsKey(key)) return _CacheByPrimaryKey[key][0];
|
||||
return null;
|
||||
}
|
||||
#endregion
|
||||
#region Business Methods
|
||||
private string _ErrorMessage = string.Empty;
|
||||
public string ErrorMessage
|
||||
{
|
||||
get { return _ErrorMessage; }
|
||||
}
|
||||
protected Association _Editable;
|
||||
private IVEHasBrokenRules HasBrokenRules
|
||||
{
|
||||
get
|
||||
{
|
||||
IVEHasBrokenRules hasBrokenRules = null;
|
||||
if (_Editable != null)
|
||||
hasBrokenRules = _Editable.HasBrokenRules;
|
||||
return hasBrokenRules;
|
||||
}
|
||||
}
|
||||
private int _AssociationID;
|
||||
[System.ComponentModel.DataObjectField(true, true)]
|
||||
public int AssociationID
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("AssociationID", true);
|
||||
return _AssociationID;
|
||||
}
|
||||
}
|
||||
private int _VersionID;
|
||||
public int VersionID
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("VersionID", true);
|
||||
if (_MyDocVersion != null) _VersionID = _MyDocVersion.VersionID;
|
||||
return _VersionID;
|
||||
}
|
||||
}
|
||||
private DocVersionInfo _MyDocVersion;
|
||||
public DocVersionInfo MyDocVersion
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("MyDocVersion", true);
|
||||
if (_MyDocVersion == null && _VersionID != 0) _MyDocVersion = DocVersionInfo.Get(_VersionID);
|
||||
return _MyDocVersion;
|
||||
}
|
||||
}
|
||||
private int _ROFstID;
|
||||
public int ROFstID
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("ROFstID", true);
|
||||
if (_MyROFst != null) _ROFstID = _MyROFst.ROFstID;
|
||||
return _ROFstID;
|
||||
}
|
||||
}
|
||||
private ROFstInfo _MyROFst;
|
||||
public ROFstInfo MyROFst
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("MyROFst", true);
|
||||
if (_MyROFst == null && _ROFstID != 0) _MyROFst = ROFstInfo.Get(_ROFstID);
|
||||
return _MyROFst;
|
||||
}
|
||||
}
|
||||
private string _Config = string.Empty;
|
||||
public string Config
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("Config", true);
|
||||
return _Config;
|
||||
}
|
||||
}
|
||||
private DateTime _DTS = new DateTime();
|
||||
public DateTime DTS
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("DTS", true);
|
||||
return _DTS;
|
||||
}
|
||||
}
|
||||
private string _UserID = string.Empty;
|
||||
public string UserID
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("UserID", true);
|
||||
return _UserID;
|
||||
}
|
||||
}
|
||||
// TODO: Replace base AssociationInfo.ToString function as necessary
|
||||
/// <summary>
|
||||
/// Overrides Base ToString
|
||||
/// </summary>
|
||||
/// <returns>A string representation of current AssociationInfo</returns>
|
||||
//public override string ToString()
|
||||
//{
|
||||
// return base.ToString();
|
||||
//}
|
||||
// TODO: Check AssociationInfo.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 AssociationInfo</returns>
|
||||
protected override object GetIdValue()
|
||||
{
|
||||
return _AssociationID;
|
||||
}
|
||||
#endregion
|
||||
#region Factory Methods
|
||||
private static int _AssociationInfoUnique = 0;
|
||||
private static int AssociationInfoUnique
|
||||
{ get { return ++_AssociationInfoUnique; } }
|
||||
private int _MyAssociationInfoUnique = AssociationInfoUnique;
|
||||
public int MyAssociationInfoUnique
|
||||
{ get { return _MyAssociationInfoUnique; } }
|
||||
protected AssociationInfo()
|
||||
{/* require use of factory methods */
|
||||
AddToCache(this);
|
||||
}
|
||||
public void Dispose()
|
||||
{
|
||||
RemoveFromCache(this);
|
||||
if (!_CacheByPrimaryKey.ContainsKey(AssociationID.ToString())) return;
|
||||
List<AssociationInfo> listAssociationInfo = _CacheByPrimaryKey[AssociationID.ToString()]; // Get the list of items
|
||||
while (listAssociationInfo.Contains(this)) listAssociationInfo.Remove(this); // Remove the item from the list
|
||||
if (listAssociationInfo.Count == 0) // If there are no items left in the list
|
||||
_CacheByPrimaryKey.Remove(AssociationID.ToString()); // remove the list
|
||||
}
|
||||
public virtual Association Get()
|
||||
{
|
||||
return _Editable = Association.Get(_AssociationID);
|
||||
}
|
||||
public static void Refresh(Association tmp)
|
||||
{
|
||||
string key = tmp.AssociationID.ToString();
|
||||
ConvertListToDictionary();
|
||||
if (_CacheByPrimaryKey.ContainsKey(key))
|
||||
foreach (AssociationInfo tmpInfo in _CacheByPrimaryKey[key])
|
||||
tmpInfo.RefreshFields(tmp);
|
||||
}
|
||||
protected virtual void RefreshFields(Association tmp)
|
||||
{
|
||||
if (_VersionID != tmp.VersionID)
|
||||
{
|
||||
if (MyDocVersion != null) MyDocVersion.RefreshDocVersionAssociations(); // Update List for old value
|
||||
_VersionID = tmp.VersionID; // Update the value
|
||||
}
|
||||
_MyDocVersion = null; // Reset list so that the next line gets a new list
|
||||
if (MyDocVersion != null) MyDocVersion.RefreshDocVersionAssociations(); // Update List for new value
|
||||
if (_ROFstID != tmp.ROFstID)
|
||||
{
|
||||
if (MyROFst != null) MyROFst.RefreshROFstAssociations(); // Update List for old value
|
||||
_ROFstID = tmp.ROFstID; // Update the value
|
||||
}
|
||||
_MyROFst = null; // Reset list so that the next line gets a new list
|
||||
if (MyROFst != null) MyROFst.RefreshROFstAssociations(); // Update List for new value
|
||||
_Config = tmp.Config;
|
||||
_DTS = tmp.DTS;
|
||||
_UserID = tmp.UserID;
|
||||
_AssociationInfoExtension.Refresh(this);
|
||||
if(_MyDocVersion != null)
|
||||
{
|
||||
_MyDocVersion.Dispose();// Dispose related value
|
||||
_MyDocVersion = null;// Reset related value
|
||||
}
|
||||
if(_MyROFst != null)
|
||||
{
|
||||
_MyROFst.Dispose();// Dispose related value
|
||||
_MyROFst = null;// Reset related value
|
||||
}
|
||||
OnChange();// raise an event
|
||||
}
|
||||
public static void Refresh(DocVersionAssociation tmp)
|
||||
{
|
||||
string key = tmp.AssociationID.ToString();
|
||||
ConvertListToDictionary();
|
||||
if (_CacheByPrimaryKey.ContainsKey(key))
|
||||
foreach (AssociationInfo tmpInfo in _CacheByPrimaryKey[key])
|
||||
tmpInfo.RefreshFields(tmp);
|
||||
}
|
||||
protected virtual void RefreshFields(DocVersionAssociation tmp)
|
||||
{
|
||||
if (_ROFstID != tmp.ROFstID)
|
||||
{
|
||||
if (MyROFst != null) MyROFst.RefreshROFstAssociations(); // Update List for old value
|
||||
_ROFstID = tmp.ROFstID; // Update the value
|
||||
}
|
||||
_MyROFst = null; // Reset list so that the next line gets a new list
|
||||
if (MyROFst != null) MyROFst.RefreshROFstAssociations(); // Update List for new value
|
||||
_Config = tmp.Config;
|
||||
_DTS = tmp.DTS;
|
||||
_UserID = tmp.UserID;
|
||||
_AssociationInfoExtension.Refresh(this);
|
||||
if(_MyDocVersion != null)
|
||||
{
|
||||
_MyDocVersion.Dispose();// Dispose related value
|
||||
_MyDocVersion = null;// Reset related value
|
||||
}
|
||||
if(_MyROFst != null)
|
||||
{
|
||||
_MyROFst.Dispose();// Dispose related value
|
||||
_MyROFst = null;// Reset related value
|
||||
}
|
||||
OnChange();// raise an event
|
||||
}
|
||||
public static void Refresh(ROFstAssociation tmp)
|
||||
{
|
||||
string key = tmp.AssociationID.ToString();
|
||||
ConvertListToDictionary();
|
||||
if (_CacheByPrimaryKey.ContainsKey(key))
|
||||
foreach (AssociationInfo tmpInfo in _CacheByPrimaryKey[key])
|
||||
tmpInfo.RefreshFields(tmp);
|
||||
}
|
||||
protected virtual void RefreshFields(ROFstAssociation tmp)
|
||||
{
|
||||
if (_VersionID != tmp.VersionID)
|
||||
{
|
||||
if (MyDocVersion != null) MyDocVersion.RefreshDocVersionAssociations(); // Update List for old value
|
||||
_VersionID = tmp.VersionID; // Update the value
|
||||
}
|
||||
_MyDocVersion = null; // Reset list so that the next line gets a new list
|
||||
if (MyDocVersion != null) MyDocVersion.RefreshDocVersionAssociations(); // Update List for new value
|
||||
_Config = tmp.Config;
|
||||
_DTS = tmp.DTS;
|
||||
_UserID = tmp.UserID;
|
||||
_AssociationInfoExtension.Refresh(this);
|
||||
if(_MyDocVersion != null)
|
||||
{
|
||||
_MyDocVersion.Dispose();// Dispose related value
|
||||
_MyDocVersion = null;// Reset related value
|
||||
}
|
||||
if(_MyROFst != null)
|
||||
{
|
||||
_MyROFst.Dispose();// Dispose related value
|
||||
_MyROFst = null;// Reset related value
|
||||
}
|
||||
OnChange();// raise an event
|
||||
}
|
||||
public static AssociationInfo Get(int associationID)
|
||||
{
|
||||
//if (!CanGetObject())
|
||||
// throw new System.Security.SecurityException("User not authorized to view a Association");
|
||||
try
|
||||
{
|
||||
AssociationInfo tmp = GetCachedByPrimaryKey(associationID);
|
||||
if (tmp == null)
|
||||
{
|
||||
tmp = DataPortal.Fetch<AssociationInfo>(new PKCriteria(associationID));
|
||||
AddToCache(tmp);
|
||||
}
|
||||
if (tmp.ErrorMessage == "No Record Found")
|
||||
{
|
||||
tmp.Dispose(); // Clean-up AssociationInfo
|
||||
tmp = null;
|
||||
}
|
||||
return tmp;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
throw new DbCslaException("Error on AssociationInfo.Get", ex);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region Data Access Portal
|
||||
internal AssociationInfo(SafeDataReader dr)
|
||||
{
|
||||
if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] AssociationInfo.Constructor", GetHashCode());
|
||||
try
|
||||
{
|
||||
ReadData(dr);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (_MyLog.IsErrorEnabled) _MyLog.Error("AssociationInfo.Constructor", ex);
|
||||
throw new DbCslaException("AssociationInfo.Constructor", ex);
|
||||
}
|
||||
}
|
||||
[Serializable()]
|
||||
protected class PKCriteria
|
||||
{
|
||||
private int _AssociationID;
|
||||
public int AssociationID
|
||||
{ get { return _AssociationID; } }
|
||||
public PKCriteria(int associationID)
|
||||
{
|
||||
_AssociationID = associationID;
|
||||
}
|
||||
}
|
||||
private void ReadData(SafeDataReader dr)
|
||||
{
|
||||
if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] AssociationInfo.ReadData", GetHashCode());
|
||||
try
|
||||
{
|
||||
_AssociationID = dr.GetInt32("AssociationID");
|
||||
_VersionID = dr.GetInt32("VersionID");
|
||||
_ROFstID = dr.GetInt32("ROFstID");
|
||||
_Config = dr.GetString("Config");
|
||||
_DTS = dr.GetDateTime("DTS");
|
||||
_UserID = dr.GetString("UserID");
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (_MyLog.IsErrorEnabled) _MyLog.Error("AssociationInfo.ReadData", ex);
|
||||
_ErrorMessage = ex.Message;
|
||||
throw new DbCslaException("AssociationInfo.ReadData", ex);
|
||||
}
|
||||
}
|
||||
private void DataPortal_Fetch(PKCriteria criteria)
|
||||
{
|
||||
if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] AssociationInfo.DataPortal_Fetch", GetHashCode());
|
||||
try
|
||||
{
|
||||
using (SqlConnection cn = Database.VEPROMS_SqlConnection)
|
||||
{
|
||||
ApplicationContext.LocalContext["cn"] = cn;
|
||||
using (SqlCommand cm = cn.CreateCommand())
|
||||
{
|
||||
cm.CommandType = CommandType.StoredProcedure;
|
||||
cm.CommandText = "getAssociation";
|
||||
cm.Parameters.AddWithValue("@AssociationID", criteria.AssociationID);
|
||||
using (SafeDataReader dr = new SafeDataReader(cm.ExecuteReader()))
|
||||
{
|
||||
if (!dr.Read())
|
||||
{
|
||||
_ErrorMessage = "No Record Found";
|
||||
return;
|
||||
}
|
||||
ReadData(dr);
|
||||
}
|
||||
}
|
||||
// removing of item only needed for local data portal
|
||||
if (ApplicationContext.ExecutionLocation == ApplicationContext.ExecutionLocations.Client)
|
||||
ApplicationContext.LocalContext.Remove("cn");
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (_MyLog.IsErrorEnabled) _MyLog.Error("AssociationInfo.DataPortal_Fetch", ex);
|
||||
_ErrorMessage = ex.Message;
|
||||
throw new DbCslaException("AssociationInfo.DataPortal_Fetch", ex);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
// Standard Refresh
|
||||
#region extension
|
||||
AssociationInfoExtension _AssociationInfoExtension = new AssociationInfoExtension();
|
||||
[Serializable()]
|
||||
partial class AssociationInfoExtension : extensionBase { }
|
||||
[Serializable()]
|
||||
class extensionBase
|
||||
{
|
||||
// Default Refresh
|
||||
public virtual void Refresh(AssociationInfo tmp) { }
|
||||
}
|
||||
#endregion
|
||||
} // Class
|
||||
#region Converter
|
||||
internal class AssociationInfoConverter : ExpandableObjectConverter
|
||||
{
|
||||
public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destType)
|
||||
{
|
||||
if (destType == typeof(string) && value is AssociationInfo)
|
||||
{
|
||||
// Return the ToString value
|
||||
return ((AssociationInfo)value).ToString();
|
||||
}
|
||||
return base.ConvertTo(context, culture, value, destType);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
} // Namespace
|
319
PROMS/VEPROMS.CSLA.Library/Generated/AssociationInfoList.cs
Normal file
319
PROMS/VEPROMS.CSLA.Library/Generated/AssociationInfoList.cs
Normal file
@ -0,0 +1,319 @@
|
||||
// ========================================================================
|
||||
// Copyright 2007 - Volian Enterprises, Inc. All rights reserved.
|
||||
// Volian Enterprises - Proprietary Information - DO NOT COPY OR DISTRIBUTE
|
||||
// ------------------------------------------------------------------------
|
||||
// $Workfile: $ $Revision: $
|
||||
// $Author: $ $Date: $
|
||||
//
|
||||
// $History: $
|
||||
// ========================================================================
|
||||
|
||||
using System;
|
||||
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
|
||||
{
|
||||
/// <summary>
|
||||
/// AssociationInfoList Generated by MyGeneration using the CSLA Object Mapping template
|
||||
/// </summary>
|
||||
[Serializable()]
|
||||
[TypeConverter(typeof(AssociationInfoListConverter))]
|
||||
public partial class AssociationInfoList : ReadOnlyListBase<AssociationInfoList, AssociationInfo>, ICustomTypeDescriptor, IDisposable
|
||||
{
|
||||
#region Log4Net
|
||||
private static readonly log4net.ILog _MyLog = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
||||
#endregion
|
||||
#region Business Methods
|
||||
internal new IList<AssociationInfo> Items
|
||||
{ get { return base.Items; } }
|
||||
public void AddEvents()
|
||||
{
|
||||
foreach (AssociationInfo tmp in this)
|
||||
{
|
||||
tmp.Changed += new AssociationInfoEvent(tmp_Changed);
|
||||
}
|
||||
}
|
||||
void tmp_Changed(object sender)
|
||||
{
|
||||
for (int i = 0; i < Count; i++)
|
||||
{
|
||||
if (base[i] == sender)
|
||||
this.OnListChanged(new ListChangedEventArgs(ListChangedType.ItemChanged, i));
|
||||
}
|
||||
}
|
||||
public void Dispose()
|
||||
{
|
||||
foreach (AssociationInfo tmp in this)
|
||||
{
|
||||
tmp.Changed -= new AssociationInfoEvent(tmp_Changed);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region Factory Methods
|
||||
public static AssociationInfoList _AssociationInfoList = null;
|
||||
/// <summary>
|
||||
/// Return a list of all AssociationInfo.
|
||||
/// </summary>
|
||||
public static AssociationInfoList Get()
|
||||
{
|
||||
try
|
||||
{
|
||||
if (_AssociationInfoList != null)
|
||||
return _AssociationInfoList;
|
||||
AssociationInfoList tmp = DataPortal.Fetch<AssociationInfoList>();
|
||||
AssociationInfo.AddList(tmp);
|
||||
tmp.AddEvents();
|
||||
_AssociationInfoList = tmp;
|
||||
return tmp;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
throw new DbCslaException("Error on AssociationInfoList.Get", ex);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Reset the list of all AssociationInfo.
|
||||
/// </summary>
|
||||
public static void Reset()
|
||||
{
|
||||
_AssociationInfoList = null;
|
||||
}
|
||||
// TODO: Add alternative gets -
|
||||
//public static AssociationInfoList Get(<criteria>)
|
||||
//{
|
||||
// try
|
||||
// {
|
||||
// return DataPortal.Fetch<AssociationInfoList>(new FilteredCriteria(<criteria>));
|
||||
// }
|
||||
// catch (Exception ex)
|
||||
// {
|
||||
// throw new DbCslaException("Error on AssociationInfoList.Get", ex);
|
||||
// }
|
||||
//}
|
||||
public static AssociationInfoList GetByVersionID(int versionID)
|
||||
{
|
||||
try
|
||||
{
|
||||
AssociationInfoList tmp = DataPortal.Fetch<AssociationInfoList>(new VersionIDCriteria(versionID));
|
||||
AssociationInfo.AddList(tmp);
|
||||
tmp.AddEvents();
|
||||
return tmp;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
throw new DbCslaException("Error on AssociationInfoList.GetByVersionID", ex);
|
||||
}
|
||||
}
|
||||
public static AssociationInfoList GetByROFstID(int rOFstID)
|
||||
{
|
||||
try
|
||||
{
|
||||
AssociationInfoList tmp = DataPortal.Fetch<AssociationInfoList>(new ROFstIDCriteria(rOFstID));
|
||||
AssociationInfo.AddList(tmp);
|
||||
tmp.AddEvents();
|
||||
return tmp;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
throw new DbCslaException("Error on AssociationInfoList.GetByROFstID", ex);
|
||||
}
|
||||
}
|
||||
private AssociationInfoList()
|
||||
{ /* require use of factory methods */ }
|
||||
#endregion
|
||||
#region Data Access Portal
|
||||
private void DataPortal_Fetch()
|
||||
{
|
||||
this.RaiseListChangedEvents = false;
|
||||
if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] AssociationInfoList.DataPortal_Fetch", GetHashCode());
|
||||
try
|
||||
{
|
||||
using (SqlConnection cn = Database.VEPROMS_SqlConnection)
|
||||
{
|
||||
using (SqlCommand cm = cn.CreateCommand())
|
||||
{
|
||||
cm.CommandType = CommandType.StoredProcedure;
|
||||
cm.CommandText = "getAssociations";
|
||||
using (SafeDataReader dr = new SafeDataReader(cm.ExecuteReader()))
|
||||
{
|
||||
IsReadOnly = false;
|
||||
while (dr.Read()) this.Add(new AssociationInfo(dr));
|
||||
IsReadOnly = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (_MyLog.IsErrorEnabled) _MyLog.Error("AssociationInfoList.DataPortal_Fetch", ex);
|
||||
throw new DbCslaException("AssociationInfoList.DataPortal_Fetch", ex);
|
||||
}
|
||||
this.RaiseListChangedEvents = true;
|
||||
}
|
||||
[Serializable()]
|
||||
private class VersionIDCriteria
|
||||
{
|
||||
public VersionIDCriteria(int versionID)
|
||||
{
|
||||
_VersionID = versionID;
|
||||
}
|
||||
private int _VersionID;
|
||||
public int VersionID
|
||||
{
|
||||
get { return _VersionID; }
|
||||
set { _VersionID = value; }
|
||||
}
|
||||
}
|
||||
private void DataPortal_Fetch(VersionIDCriteria criteria)
|
||||
{
|
||||
this.RaiseListChangedEvents = false;
|
||||
if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] AssociationInfoList.DataPortal_FetchVersionID", GetHashCode());
|
||||
try
|
||||
{
|
||||
using (SqlConnection cn = Database.VEPROMS_SqlConnection)
|
||||
{
|
||||
using (SqlCommand cm = cn.CreateCommand())
|
||||
{
|
||||
cm.CommandType = CommandType.StoredProcedure;
|
||||
cm.CommandText = "getAssociationsByVersionID";
|
||||
cm.Parameters.AddWithValue("@VersionID", criteria.VersionID);
|
||||
using (SafeDataReader dr = new SafeDataReader(cm.ExecuteReader()))
|
||||
{
|
||||
IsReadOnly = false;
|
||||
while (dr.Read()) this.Add(new AssociationInfo(dr));
|
||||
IsReadOnly = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (_MyLog.IsErrorEnabled) _MyLog.Error("AssociationInfoList.DataPortal_FetchVersionID", ex);
|
||||
throw new DbCslaException("AssociationInfoList.DataPortal_Fetch", ex);
|
||||
}
|
||||
this.RaiseListChangedEvents = true;
|
||||
}
|
||||
[Serializable()]
|
||||
private class ROFstIDCriteria
|
||||
{
|
||||
public ROFstIDCriteria(int rOFstID)
|
||||
{
|
||||
_ROFstID = rOFstID;
|
||||
}
|
||||
private int _ROFstID;
|
||||
public int ROFstID
|
||||
{
|
||||
get { return _ROFstID; }
|
||||
set { _ROFstID = value; }
|
||||
}
|
||||
}
|
||||
private void DataPortal_Fetch(ROFstIDCriteria criteria)
|
||||
{
|
||||
this.RaiseListChangedEvents = false;
|
||||
if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] AssociationInfoList.DataPortal_FetchROFstID", GetHashCode());
|
||||
try
|
||||
{
|
||||
using (SqlConnection cn = Database.VEPROMS_SqlConnection)
|
||||
{
|
||||
using (SqlCommand cm = cn.CreateCommand())
|
||||
{
|
||||
cm.CommandType = CommandType.StoredProcedure;
|
||||
cm.CommandText = "getAssociationsByROFstID";
|
||||
cm.Parameters.AddWithValue("@ROFstID", criteria.ROFstID);
|
||||
using (SafeDataReader dr = new SafeDataReader(cm.ExecuteReader()))
|
||||
{
|
||||
IsReadOnly = false;
|
||||
while (dr.Read()) this.Add(new AssociationInfo(dr));
|
||||
IsReadOnly = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (_MyLog.IsErrorEnabled) _MyLog.Error("AssociationInfoList.DataPortal_FetchROFstID", ex);
|
||||
throw new DbCslaException("AssociationInfoList.DataPortal_Fetch", ex);
|
||||
}
|
||||
this.RaiseListChangedEvents = true;
|
||||
}
|
||||
#endregion
|
||||
#region ICustomTypeDescriptor impl
|
||||
public String GetClassName()
|
||||
{ return TypeDescriptor.GetClassName(this, true); }
|
||||
public AttributeCollection GetAttributes()
|
||||
{ return TypeDescriptor.GetAttributes(this, true); }
|
||||
public String GetComponentName()
|
||||
{ return TypeDescriptor.GetComponentName(this, true); }
|
||||
public TypeConverter GetConverter()
|
||||
{ return TypeDescriptor.GetConverter(this, true); }
|
||||
public EventDescriptor GetDefaultEvent()
|
||||
{ return TypeDescriptor.GetDefaultEvent(this, true); }
|
||||
public PropertyDescriptor GetDefaultProperty()
|
||||
{ return TypeDescriptor.GetDefaultProperty(this, true); }
|
||||
public object GetEditor(Type editorBaseType)
|
||||
{ return TypeDescriptor.GetEditor(this, editorBaseType, true); }
|
||||
public EventDescriptorCollection GetEvents(Attribute[] attributes)
|
||||
{ return TypeDescriptor.GetEvents(this, attributes, true); }
|
||||
public EventDescriptorCollection GetEvents()
|
||||
{ return TypeDescriptor.GetEvents(this, true); }
|
||||
public object GetPropertyOwner(PropertyDescriptor pd)
|
||||
{ return this; }
|
||||
/// <summary>
|
||||
/// Called to get the properties of this type. Returns properties with certain
|
||||
/// attributes. this restriction is not implemented here.
|
||||
/// </summary>
|
||||
/// <param name="attributes"></param>
|
||||
/// <returns></returns>
|
||||
public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
|
||||
{ return GetProperties(); }
|
||||
/// <summary>
|
||||
/// Called to get the properties of this type.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public PropertyDescriptorCollection GetProperties()
|
||||
{
|
||||
// Create a collection object to hold property descriptors
|
||||
PropertyDescriptorCollection pds = new PropertyDescriptorCollection(null);
|
||||
// Iterate the list
|
||||
for (int i = 0; i < this.Items.Count; i++)
|
||||
{
|
||||
// Create a property descriptor for the item and add to the property descriptor collection
|
||||
AssociationInfoListPropertyDescriptor pd = new AssociationInfoListPropertyDescriptor(this, i);
|
||||
pds.Add(pd);
|
||||
}
|
||||
// return the property descriptor collection
|
||||
return pds;
|
||||
}
|
||||
#endregion
|
||||
} // Class
|
||||
#region Property Descriptor
|
||||
/// <summary>
|
||||
/// Summary description for CollectionPropertyDescriptor.
|
||||
/// </summary>
|
||||
public partial class AssociationInfoListPropertyDescriptor : vlnListPropertyDescriptor
|
||||
{
|
||||
private AssociationInfo Item { get { return (AssociationInfo)_Item; } }
|
||||
public AssociationInfoListPropertyDescriptor(AssociationInfoList collection, int index) : base(collection, index) { ;}
|
||||
}
|
||||
#endregion
|
||||
#region Converter
|
||||
internal class AssociationInfoListConverter : ExpandableObjectConverter
|
||||
{
|
||||
public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destType)
|
||||
{
|
||||
if (destType == typeof(string) && value is AssociationInfoList)
|
||||
{
|
||||
// Return department and department role separated by comma.
|
||||
return ((AssociationInfoList)value).Items.Count.ToString() + " Associations";
|
||||
}
|
||||
return base.ConvertTo(context, culture, value, destType);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
} // Namespace
|
Loading…
x
Reference in New Issue
Block a user