40 lines
1.6 KiB
C#
40 lines
1.6 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 Company
|
|
{
|
|
public Company()
|
|
{
|
|
this.Company1 = new HashSet<Company>();
|
|
this.Company2Client = new HashSet<Company2Client>();
|
|
this.Company2View = new HashSet<Company2View>();
|
|
this.Teams = new HashSet<Team>();
|
|
this.Projects = new HashSet<Project>();
|
|
this.StrategicGoal2Company = new HashSet<StrategicGoal2Company>();
|
|
}
|
|
|
|
public System.Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public Nullable<System.Guid> ParentCompanyId { get; set; }
|
|
|
|
public virtual ICollection<Company> Company1 { get; set; }
|
|
public virtual Company Company2 { get; set; }
|
|
public virtual ICollection<Company2Client> Company2Client { get; set; }
|
|
public virtual ICollection<Company2View> Company2View { get; set; }
|
|
public virtual ICollection<Team> Teams { get; set; }
|
|
public virtual ICollection<Project> Projects { get; set; }
|
|
public virtual ICollection<StrategicGoal2Company> StrategicGoal2Company { get; set; }
|
|
}
|
|
}
|