64 lines
1.8 KiB
C#
64 lines
1.8 KiB
C#
using System;
|
|
|
|
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class Appointment : BeWoEntityBase
|
|
{
|
|
public static string PropertyName_AppointmentCategory = "AppointmentCategory";
|
|
|
|
public static string PropertyName_Type = "Type";
|
|
|
|
public static string PropertyName_StartDate = "StartDate";
|
|
|
|
public static string PropertyName_EndDate = "EndDate";
|
|
|
|
public static string PropertyName_AllDay = "AllDay";
|
|
|
|
public static string PropertyName_Subject = "Subject";
|
|
|
|
public static string PropertyName_Location = "Location";
|
|
|
|
public static string PropertyName_Status = "Status";
|
|
|
|
public static string PropertyName_RecurrenceInfo = "RecurrenceInfo";
|
|
|
|
public static string PropertyName_ReminderInfo = "ReminderInfo";
|
|
|
|
public static string PropertyName_CustomerOid = "CustomerOid";
|
|
|
|
public static string PropertyName_EmployeeOid = "EmployeeOid";
|
|
|
|
|
|
|
|
public Appointment()
|
|
{
|
|
_Tid = TableID.Appointment;
|
|
}
|
|
|
|
public virtual AppointmentCategory AppointmentCategory { get; set; }
|
|
|
|
public virtual int Type { get; set; }
|
|
|
|
public virtual DateTime? EndDate { get; set; }
|
|
|
|
public virtual DateTime? StartDate { get; set; }
|
|
|
|
public virtual bool AllDay { get; set; }
|
|
|
|
public virtual String Subject { get; set; }
|
|
|
|
public virtual String Location { get; set; }
|
|
|
|
public virtual int Status { get; set; }
|
|
|
|
public virtual String RecurrenceInfo { get; set; }
|
|
|
|
public virtual String ReminderInfo { get; set; }
|
|
|
|
public virtual long? CustomerOid { get; set; }
|
|
|
|
public virtual long? EmployeeOid { get; set; }
|
|
}
|
|
} |