public SubmittalContract()
 {
     this.projectKey                = null;
     this.specSection               = null;
     this.specSectionPrimaryIndex   = string.Empty;
     this.specSectionSecondaryIndex = string.Empty;
     this.to                            = null;
     this.from                          = null;
     this.totalPages                    = 0;
     this.deliveryMethod                = DeliveryContract.Hand;
     this.otherDeliveryMethod           = string.Empty;
     this.phaseNumber                   = string.Empty;
     this.reimbursable                  = false;
     this.final                         = false;
     this.copyToList                    = new List <CopyToContract>();
     this.dateReceived                  = null;
     this.contractNumber                = string.Empty;
     this.trackingItems                 = new List <TrackingItemContract>();
     this.routingItems                  = new List <RoutingItemContract>();
     this.remarks                       = string.Empty;
     this.action                        = ActionStatusContract.NoExceptionTaken;
     this.status                        = null;
     this.dateToField                   = null;
     this.remainderLocation             = SubmittalRemainderLocationContract.FilingCabinet;
     this.remainderUnderSubmittalNumber = string.Empty;
     this.otherRemainderLocation        = string.Empty;
     this.transmittalRemarks            = string.Empty;
 }
 public RequestForInformationContract()
 {
     this.projectKey = null;
     this.number = 0;
     this.from = null;
     this.totalPages = 0;
     this.deliveryMethod = DeliveryContract.Hand;
     this.phaseNumber = string.Empty;
     this.reimbursable = false;
     this.final = false;
     this.copyToList = new List<CopyToContract>();
     this.dateReceived = null;
     this.dateRequestedBy = null;
     this.contractor = null;
     this.specSection = null;
     this.routingItems = new List<RoutingItemContract>();
     this.question = string.Empty;
     this.description = string.Empty;
     this.contractorProposedSolution = string.Empty;
     this.change = false;
     this.cause = 0;
     this.origin = 0;
     this.status = null;
     this.dateToField = null;
     this.shortAnswer = string.Empty;
     this.longAnswer = string.Empty;
     this.remarks = string.Empty;
 }
Beispiel #3
0
 public SubmittalContract()
 {
     this.projectKey = null;
     this.specSection = null;
     this.specSectionPrimaryIndex = string.Empty;
     this.specSectionSecondaryIndex = string.Empty;
     this.to = null;
     this.from = null;
     this.totalPages = 0;
     this.deliveryMethod = DeliveryContract.Hand;
     this.otherDeliveryMethod = string.Empty;
     this.phaseNumber = string.Empty;
     this.reimbursable = false;
     this.final = false;
     this.copyToList = new List<CopyToContract>();
     this.dateReceived = null;
     this.contractNumber = string.Empty;
     this.trackingItems = new List<TrackingItemContract>();
     this.routingItems = new List<RoutingItemContract>();
     this.remarks = string.Empty;
     this.action = ActionStatusContract.NoExceptionTaken;
     this.status = null;
     this.dateToField = null;
     this.remainderLocation = SubmittalRemainderLocationContract.FilingCabinet;
     this.remainderUnderSubmittalNumber = string.Empty;
     this.otherRemainderLocation = string.Empty;
 }
Beispiel #4
0
 public RequestForInformationContract()
 {
     this.projectKey                 = null;
     this.number                     = 0;
     this.from                       = null;
     this.totalPages                 = 0;
     this.deliveryMethod             = DeliveryContract.Hand;
     this.phaseNumber                = string.Empty;
     this.reimbursable               = false;
     this.final                      = false;
     this.copyToList                 = new List <CopyToContract>();
     this.dateReceived               = null;
     this.dateRequestedBy            = null;
     this.contractor                 = null;
     this.specSection                = null;
     this.routingItems               = new List <RoutingItemContract>();
     this.question                   = string.Empty;
     this.description                = string.Empty;
     this.contractorProposedSolution = string.Empty;
     this.change                     = false;
     this.cause                      = 0;
     this.origin                     = 0;
     this.status                     = null;
     this.dateToField                = null;
     this.shortAnswer                = string.Empty;
     this.longAnswer                 = string.Empty;
     this.remarks                    = string.Empty;
 }
 public TrackingItemContract()
 {
     this.totalItemsReceived = 0;
     this.totalItemsSent     = 0;
     this.deferredApproval   = 0;
     this.substitutionNumber = 0;
     this.specSection        = null;
     this.description        = string.Empty;
     this.status             = ActionStatusContract.NoExceptionTaken;
 }
 private void AddSpecificationSection(SpecificationSectionContract specSection)
 {
     string query = string.Format("INSERT INTO SpecificationSection (SpecificationSectionID,SpecificationSectionNumber,SpecificationSectionTitle,SpecificationSectionDescription) VALUES ({0},'{1}','{2}','{3}');",
         specSection.Key, specSection.Number, specSection.Title, specSection.Description);
     this.database.ExecuteNonQuery(
             this.database.GetSqlStringCommand(query));
 }