Esempio n. 1
0
 /// <summary>
 /// Constructor for building a new simple object with the POCO class
 /// </summary>
 public ProjectCostTypeSimple(ProjectCostType ProjectCostType)
     : this()
 {
     this.ProjectCostTypeID          = ProjectCostType.ProjectCostTypeID;
     this.ProjectCostTypeName        = ProjectCostType.ProjectCostTypeName;
     this.ProjectCostTypeDisplayName = ProjectCostType.ProjectCostTypeDisplayName;
     this.SortOrder = ProjectCostType.SortOrder;
 }
Esempio n. 2
0
        private void pbFinanceOtherOut_Click(object sender, EventArgs e)
        {
            ProjectCostType pct = new ProjectCostType();

            pct.ShowDialog();
        }