43 lines
1.8 KiB
C#
43 lines
1.8 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated from a template.
|
|
//
|
|
// Manual changes to this file may cause unexpected behavior in your application.
|
|
// Manual changes to this file will be overwritten if the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace EnVisage
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public partial class Holiday
|
|
{
|
|
public Holiday()
|
|
{
|
|
this.Holiday2ExpenditureCategory = new HashSet<Holiday2ExpenditureCategory>();
|
|
this.Holiday2PeopleResource = new HashSet<Holiday2PeopleResource>();
|
|
this.Holiday2Team = new HashSet<Holiday2Team>();
|
|
this.HolidayAllocations = new HashSet<HolidayAllocation>();
|
|
}
|
|
|
|
public System.Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public bool WorkingDays { get; set; }
|
|
public System.Guid HolidayGroupId { get; set; }
|
|
public System.DateTime EffectiveChangeDate { get; set; }
|
|
public System.DateTime CreatedAt { get; set; }
|
|
public string Options { get; set; }
|
|
public System.DateTime StartDate { get; set; }
|
|
public Nullable<System.DateTime> EndDate { get; set; }
|
|
public bool CompanyImpact { get; set; }
|
|
public bool IsInclude { get; set; }
|
|
|
|
public virtual ICollection<Holiday2ExpenditureCategory> Holiday2ExpenditureCategory { get; set; }
|
|
public virtual ICollection<Holiday2PeopleResource> Holiday2PeopleResource { get; set; }
|
|
public virtual ICollection<Holiday2Team> Holiday2Team { get; set; }
|
|
public virtual ICollection<HolidayAllocation> HolidayAllocations { get; set; }
|
|
}
|
|
}
|