68 lines
1.4 KiB
C#
68 lines
1.4 KiB
C#
|
|
using Ease.Core.Model;
|
|
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace HRM.BO
|
|
{
|
|
public class NotificationParticipant : BasicBaseObject
|
|
{
|
|
#region Constructor
|
|
public NotificationParticipant()
|
|
{
|
|
_nNotificationID = 0;
|
|
_nEmployeeID = 0;
|
|
_dSentTime = DateTime.MinValue;
|
|
_sComments = string.Empty;
|
|
|
|
}
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
#region NotificationID : ID
|
|
private int _nNotificationID;
|
|
public int NotificationID
|
|
{
|
|
get { return _nNotificationID; }
|
|
set { _nNotificationID = value; }
|
|
}
|
|
#endregion
|
|
|
|
#region EmployeeID : ID
|
|
private int _nEmployeeID;
|
|
public int EmployeeID
|
|
{
|
|
get { return _nEmployeeID; }
|
|
set { _nEmployeeID = value; }
|
|
}
|
|
#endregion
|
|
|
|
#region Comments : string
|
|
private string _sComments;
|
|
public string Comments
|
|
{
|
|
get { return _sComments; }
|
|
set { _sComments = value; }
|
|
}
|
|
#endregion
|
|
|
|
#region SentTime : DateTime
|
|
private DateTime _dSentTime;
|
|
|
|
public DateTime SentTime
|
|
{
|
|
get { return _dSentTime; }
|
|
set { _dSentTime = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|