Ejemplo n.º 1
0
 public Project(int projectID, string name, string description, Person sogetiPractitioner, Person accountManager,
     Person deliveryManager, Person administrator, Client client, DateTime startDate, DateTime endDate, DateTime revisedDate, Person projectLead, CommercialTerms commercialTerms, Frequency reviewFrequency, SogetiDepartments sogetiDept)
 {
     this.ProjectID = projectID;
     this.Name = name;
     this.Description = description;
     this.SogetiPractitioner = sogetiPractitioner;
     this.AccountManager = accountManager;
     this.DeliveryManager = deliveryManager;
     this.Administrator = administrator;
     this.ProjectLead = projectLead;
     this.ReviewFrequency = reviewFrequency;
     this.CommercialTermsAndConditions = commercialTerms;
     this.Client = client;
     this.StartDate = startDate;
     this.EndDate = endDate;
     this.RevisedDate = revisedDate;
     this.SogetiDepartment = sogetiDept;
     this.ProjectStatusList = new List<ProjectStatus>();
 }
Ejemplo n.º 2
0
 public Project(int projectID, string name, string description, Person sogetiPractitioner, Person accountManager,
                Person deliveryManager, Person administrator, Client client, DateTime startDate, DateTime endDate, DateTime revisedDate, Person projectLead, CommercialTerms commercialTerms, Frequency reviewFrequency, SogetiDepartments sogetiDept)
 {
     this.ProjectID                    = projectID;
     this.Name                         = name;
     this.Description                  = description;
     this.SogetiPractitioner           = sogetiPractitioner;
     this.AccountManager               = accountManager;
     this.DeliveryManager              = deliveryManager;
     this.Administrator                = administrator;
     this.ProjectLead                  = projectLead;
     this.ReviewFrequency              = reviewFrequency;
     this.CommercialTermsAndConditions = commercialTerms;
     this.Client                       = client;
     this.StartDate                    = startDate;
     this.EndDate                      = endDate;
     this.RevisedDate                  = revisedDate;
     this.SogetiDepartment             = sogetiDept;
     this.ProjectStatusList            = new List <ProjectStatus>();
 }