55 lines
1.2 KiB
C#
55 lines
1.2 KiB
C#
|
using System;
|
|||
|
using System.Linq;
|
|||
|
using System.Data;
|
|||
|
|
|||
|
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
#region ActivityRelatedSource
|
|||
|
[Serializable]
|
|||
|
public class ActivityRelatedSource:AuditTrailBase
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
#region Constructor
|
|||
|
public ActivityRelatedSource()
|
|||
|
{
|
|||
|
SourceTable = string.Empty;
|
|||
|
ProjectID = 0;
|
|||
|
ValueField = string.Empty;
|
|||
|
ObjectType = string.Empty;
|
|||
|
ObjectTypeSubsidiary = string.Empty;
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
|
|||
|
public string SourceTable { get; set; }
|
|||
|
|
|||
|
public int ProjectID { get; set; }
|
|||
|
|
|||
|
public string ValueField { get; set; }
|
|||
|
|
|||
|
public string ObjectType { get; set; }
|
|||
|
|
|||
|
public string ObjectTypeSubsidiary { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region IActivityRelatedSource
|
|||
|
public interface IActivityRelatedSourceService
|
|||
|
{
|
|||
|
void Save(ActivityRelatedSource activityRelatedSource);
|
|||
|
void Delete(int fundID);
|
|||
|
ActivityRelatedSource Get(int fundID);
|
|||
|
DataTable GetTable();
|
|||
|
List<ActivityRelatedSource> Get();
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|