28 lines
996 B
C#
28 lines
996 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class Company
|
|
{
|
|
public Company()
|
|
{
|
|
this.Company1 = new List<Company>();
|
|
this.Company2Client = new List<Company2Client>();
|
|
this.Company2View = new List<Company2View>();
|
|
this.Projects = new List<Project>();
|
|
this.Teams = new List<Team>();
|
|
}
|
|
|
|
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<Project> Projects { get; set; }
|
|
public virtual ICollection<Team> Teams { get; set; }
|
|
}
|
|
}
|