EnVisageOnline/Main/Source/EnVisage/Team.cs

53 lines
2.5 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 Team
{
public Team()
{
this.Team2Project = new HashSet<Team2Project>();
this.User2Team = new HashSet<User2Team>();
this.TeamAllocations = new HashSet<TeamAllocation>();
this.Holiday2Team = new HashSet<Holiday2Team>();
this.PeopleResource2Team = new HashSet<PeopleResource2Team>();
this.PeopleResourceAllocations = new HashSet<PeopleResourceAllocation>();
this.NonProjectTime2Team = new HashSet<NonProjectTime2Team>();
this.Team2View = new HashSet<Team2View>();
}
public System.Guid Id { get; set; }
public string Name { get; set; }
public Nullable<System.Guid> CompanyId { get; set; }
public Nullable<System.Guid> CostCenterId { get; set; }
public Nullable<System.Guid> ReportsTo { get; set; }
public Nullable<System.Guid> PlannedCapacityScenarioId { get; set; }
public Nullable<System.Guid> ActualCapacityScenarioId { get; set; }
public Nullable<bool> ProjectAddNotification { get; set; }
public virtual Company Company { get; set; }
public virtual Contact Contact { get; set; }
public virtual CreditDepartment CreditDepartment { get; set; }
public virtual Scenario PlannedCapacityScenario { get; set; }
public virtual Scenario ActualCapacityScenario { get; set; }
public virtual ICollection<Team2Project> Team2Project { get; set; }
public virtual ICollection<User2Team> User2Team { get; set; }
public virtual ICollection<TeamAllocation> TeamAllocations { get; set; }
public virtual ICollection<Holiday2Team> Holiday2Team { get; set; }
public virtual ICollection<PeopleResource2Team> PeopleResource2Team { get; set; }
public virtual ICollection<PeopleResourceAllocation> PeopleResourceAllocations { get; set; }
public virtual ICollection<NonProjectTime2Team> NonProjectTime2Team { get; set; }
public virtual ICollection<Team2View> Team2View { get; set; }
}
}