예제 #1
0
 public ChangeOrderContract()
 {
     this.projectKey                          = null;
     this.number                              = 0;
     this.effectiveDate                       = DateTime.Now;
     this.contractor                          = null;
     this.description                         = string.Empty;
     this.originalConstructionCost            = 0;
     this.newConstructionCost                 = 0;
     this.currentProject                      = null;
     this.changeType                          = null;
     this.changeTypeDirection                 = ChangeDirectionContract.Unchanged;
     this.previousTimeChangedTotal            = null;
     this.previousAuthorizedChangeOrderAmount = null;
     this.amountChanged                       = 0;
     this.timeChangeDirection                 = ChangeDirectionContract.Unchanged;
     this.timeChanged                         = 0;
     this.dateOfSubstantialCompletion         = null;
     this.routingItems                        = new List <RoutingItemContract>();
     this.status                              = null;
     this.agencyApprovedDate                  = null;
     this.dateToField                         = null;
     this.ownerSignatureDate                  = null;
     this.architectSignatureDate              = null;
     this.contractorSignatureDate             = null;
 }
예제 #2
0
 public ChangeOrderContract()
 {
     this.projectKey = null;
     this.number = 0;
     this.effectiveDate = DateTime.Now;
     this.contractor = null;
     this.description = string.Empty;
     this.originalConstructionCost = 0;
     this.newConstructionCost = 0;
     this.currentProject = null;
     this.changeType = null;
     this.changeTypeDirection = ChangeDirectionContract.Unchanged;
     this.previousTimeChangedTotal = null;
     this.previousAuthorizedChangeOrderAmount = null;
     this.amountChanged = 0;
     this.timeChangeDirection = ChangeDirectionContract.Unchanged;
     this.timeChanged = 0;
     this.dateOfSubstantialCompletion = null;
     this.routingItems = new List<RoutingItemContract>();
     this.status = null;
     this.agencyApprovedDate = null;
     this.dateToField = null;
     this.ownerSignatureDate = null;
     this.architectSignatureDate = null;
     this.contractorSignatureDate = null;
 }
 public ConstructionChangeDirectiveContract()
 {
     this.number                  = 0;
     this.to                      = null;
     this.from                    = null;
     this.issueDate               = null;
     this.contractor              = null;
     this.description             = string.Empty;
     this.attachment              = string.Empty;
     this.reason                  = string.Empty;
     this.initiator               = string.Empty;
     this.cause                   = 0;
     this.origin                  = 0;
     this.remarks                 = string.Empty;
     this.changeType              = null;
     this.priceChangeDirection    = ChangeDirectionContract.Unchanged;
     this.amountChanged           = 0;
     this.timeChangeDirection     = ChangeDirectionContract.Unchanged;
     this.timeChanged             = 0;
     this.ownerSignatureDate      = null;
     this.architectSignatureDate  = null;
     this.contractorSignatureDate = null;
 }
 public ConstructionChangeDirectiveContract()
 {
     this.number = 0;
     this.to = null;
     this.from = null;
     this.issueDate = null;
     this.contractor = null;
     this.description = string.Empty;
     this.attachment = string.Empty;
     this.reason = string.Empty;
     this.initiator = string.Empty;
     this.cause = 0;
     this.origin = 0;
     this.remarks = string.Empty;
     this.changeType = null;
     this.priceChangeDirection = ChangeDirectionContract.Unchanged;
     this.amountChanged = 0;
     this.timeChangeDirection = ChangeDirectionContract.Unchanged;
     this.timeChanged = 0;
     this.ownerSignatureDate = null;
     this.architectSignatureDate = null;
     this.contractorSignatureDate = null;
 }
예제 #5
0
 private static ChangeDirection ToChangeDirection(ChangeDirectionContract contract)
 {
     return (ChangeDirection)Enum.Parse(typeof(ChangeDirection),
             contract.ToString());
 }