Quilt4.Service.SqlRepository.Project.Project C# (CSharp) Method

Project() public method

public Project ( ) : System.Data.Linq
return System.Data.Linq
		public Project()
		{
			this._Applications = new EntitySet<Application>(new Action<Application>(this.attach_Applications), new Action<Application>(this.detach_Applications));
			this._ApplicationUsers = new EntitySet<ApplicationUser>(new Action<ApplicationUser>(this.attach_ApplicationUsers), new Action<ApplicationUser>(this.detach_ApplicationUsers));
			this._Machines = new EntitySet<Machine>(new Action<Machine>(this.attach_Machines), new Action<Machine>(this.detach_Machines));
			this._ProjectInvitations = new EntitySet<ProjectInvitation>(new Action<ProjectInvitation>(this.attach_ProjectInvitations), new Action<ProjectInvitation>(this.detach_ProjectInvitations));
			this._ProjectUsers = new EntitySet<ProjectUser>(new Action<ProjectUser>(this.attach_ProjectUsers), new Action<ProjectUser>(this.detach_ProjectUsers));
			this._User = default(EntityRef<User>);
			OnCreated();
		}