97 lines
1.6 KiB
C#
97 lines
1.6 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Ease.CoreV35;
|
|||
|
using HRM.BO;
|
|||
|
|
|||
|
namespace Payroll.BO
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class ClaimRequisitionAttachment : BasicBaseObject
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public ClaimRequisitionAttachment()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
|
|||
|
#region ClaimID : ID
|
|||
|
|
|||
|
private int _claimID;
|
|||
|
|
|||
|
public int ClaimID
|
|||
|
{
|
|||
|
get { return _claimID; }
|
|||
|
set { _claimID = value; }
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Remarks : string
|
|||
|
|
|||
|
private string _remarks;
|
|||
|
public string Remarks
|
|||
|
{
|
|||
|
get { return _remarks; }
|
|||
|
set
|
|||
|
{
|
|||
|
_remarks = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region FileName : string
|
|||
|
|
|||
|
private string _fileName;
|
|||
|
public string FileName
|
|||
|
{
|
|||
|
get { return _fileName; }
|
|||
|
set
|
|||
|
{
|
|||
|
_fileName = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region FileLink : string
|
|||
|
|
|||
|
private string _fileLink;
|
|||
|
public string FileLink
|
|||
|
{
|
|||
|
get { return _fileLink; }
|
|||
|
set
|
|||
|
{
|
|||
|
_fileLink = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Date : Datetime
|
|||
|
|
|||
|
private DateTime _date;
|
|||
|
public DateTime Date
|
|||
|
{
|
|||
|
get { return _date; }
|
|||
|
set
|
|||
|
{
|
|||
|
_date = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|