Exemple #1
0
 public Project(object key, string number, string name) 
     : base(key)
 {
     this.number = number;
     this.name = name;
     this.address = null;
     this.owner = new Company();
     this.constructionAdministrator = null;
     this.principalInCharge = null;
     this.contractDate = null;
     this.estimatedStartDate = null;
     this.estimatedCompletionDate = null;
     this.adjustedCompletionDate = null;
     this.currentCompletionDate = null;
     this.actualCompletionDate = null;
     this.contingencyAllowanceAmount = 0;
     this.testingAllowanceAmount = 0;
     this.utilityAllowanceAmount = 0;
     this.originalConstructionCost = 0;
     this.totalChangeOrderDays = 0;
     this.adjustedConstructionCost = 0;
     this.totalChangeOrdersAmount = 0;
     this.totalSquareFeet = 0;
     this.percentComplete = 0;
     this.remarks = string.Empty;
     this.aeChangeOrderAmount = 0;
     this.contractReason = string.Empty;
     this.agencyApplicationNumber = string.Empty;
     this.agencyFileNumber = string.Empty;
     this.segment = null;
     this.allowances = new List<Allowance>();
     this.contracts = new List<Contract>();
     this.contacts = new List<ProjectContact>();
 }
Exemple #2
0
 public Company(object key)
     : base(key)
 {
     this.name = string.Empty;
     this.abbreviation = string.Empty;
     this.headquartersAddress = null;
     this.addresses = new List<Address>();
     this.phoneNumber = string.Empty;
     this.faxNumber = string.Empty;
     this.url = string.Empty;
     this.remarks = string.Empty;
 }
Exemple #3
0
 public MutableAddress(Address address)
 {
     if (address != null)
     {
         this.street = address.Street;
         this.city = address.City;
         this.state = address.State;
         this.postalCode = address.PostalCode;
     }
     else
     {
         this.street = string.Empty;
         this.city = string.Empty;
         this.state = string.Empty;
         this.postalCode = string.Empty;
     }
 }