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 ProposalRequestContract() { this.projectKey = null; this.transmittalDate = DateTime.MinValue; 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.transmittalRemarks = string.Empty; 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; }
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 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; }
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 RoutingItemContract() { this.key = null; this.discipline = null; this.routingOrder = 0; this.recipient = null; this.dateReturned = 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 CopyToContract() { this.contact = null; this.notes = string.Empty; }
public static ProjectContact ToProjectContact(ProjectContactContract contract) { ProjectContact contact = null; if (contract != null) { contact = new ProjectContact(contract.ProjectKey, contract.Key, Converter.ToContact(contract.Contact)); contact.OnFinalDistributionList = contract.OnFinalDistributionList; } return contact; }