EnVisageOnline/Beta/Source/EnVisage/Team.cs

44 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 Team
{
public Team()
{
this.PeopleResources = new HashSet<PeopleResource>();
this.Team2Project = new HashSet<Team2Project>();
this.Team2View = new HashSet<Team2View>();
this.User2Team = new HashSet<User2Team>();
this.Team2Scenario = new HashSet<Team2Scenario>();
}
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 virtual Company Company { get; set; }
public virtual Contact Contact { get; set; }
public virtual CreditDepartment CreditDepartment { get; set; }
public virtual ICollection<PeopleResource> PeopleResources { get; set; }
public virtual Scenario Scenario { get; set; }
public virtual ICollection<Team2Project> Team2Project { get; set; }
public virtual ICollection<Team2View> Team2View { get; set; }
public virtual ICollection<User2Team> User2Team { get; set; }
public virtual ICollection<Team2Scenario> Team2Scenario { get; set; }
}
}