EchoTex_Payroll/HRM.BO/Fund/VoucherSetup/ActivityRelatedSource.cs

55 lines
1.2 KiB
C#
Raw Permalink Normal View History

2024-10-14 10:01:49 +06:00
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
}