public Project(string number, string name, ProjectType projectType, Projectstatus projectStatus, Client client, ProjectSize projectSize, float estimatedCost, float projectPayement, float estimadedEarning, float actualCost, float actualEarning, DateTime startingDate, List <Ressource> requirededRessources) { this.number = number; this.name = name; this.projectType = projectType; this.projectStatus = projectStatus; this.client = client; this.projectSize = projectSize; this.estimatedCost = estimatedCost; this.projectPayement = projectPayement; this.estimadedEarning = estimadedEarning; this.ActualCost = actualCost; this.ActualEarning = actualEarning; this.startingDate = startingDate; this.requirededRessources = requirededRessources; }
public static Projectstatus Load(System.Nullable<int> SysId) { resourceSchema.Dal.Projectstatus dbo = null; try { dbo = new resourceSchema.Dal.Projectstatus(); System.Data.DataSet ds = dbo.ProjectStatus_Select_One(SysId); Projectstatus obj = null; if (GlobalTools.IsSafeDataSet(ds)) { if ((ds.Tables[0].Rows.Count > 0)) { obj = new Projectstatus(); obj.Fill(ds.Tables[0].Rows[0]); } } return obj; } catch (System.Exception ) { throw; } finally { if ((dbo != null)) { dbo.Dispose(); } } }
public static ProjectstatusCollection GetAll() { resourceSchema.Dal.Projectstatus dbo = null; try { dbo = new resourceSchema.Dal.Projectstatus(); System.Data.DataSet ds = dbo.ProjectStatus_Select_All(); ProjectstatusCollection collection = new ProjectstatusCollection(); if (GlobalTools.IsSafeDataSet(ds)) { for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) { Projectstatus obj = new Projectstatus(); obj.Fill(ds.Tables[0].Rows[i]); if ((obj != null)) { collection.Add(obj); } } } return collection; } catch (System.Exception ) { throw; } finally { if ((dbo != null)) { dbo.Dispose(); } } }