28 lines
828 B
C#
28 lines
828 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ProjectLibrary.Entites
|
|||
|
{
|
|||
|
public class TicketExtensions
|
|||
|
{
|
|||
|
public int ReaderID { get; private set; }
|
|||
|
public int ExtensionID { get; private set; }
|
|||
|
public DateTime LastUpdateDate { get; private set; }
|
|||
|
public DateTime NextUpdateDate { get; private set; }
|
|||
|
|
|||
|
public static TicketExtensions CreateEntity(int readerID, int extensionID, DateTime lastUpdateDate, DateTime nextUpdateDate)
|
|||
|
{
|
|||
|
return new TicketExtensions
|
|||
|
{
|
|||
|
ReaderID = readerID,
|
|||
|
ExtensionID = extensionID,
|
|||
|
LastUpdateDate = lastUpdateDate,
|
|||
|
NextUpdateDate = nextUpdateDate
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|