Esempio n. 1
0
 public BuilderDocumentData(int i, int bid, String dn, String fn, DateTime dc, DateTime lu, DateTime lr, DateTime a)
 {
     id = i;
     builderId = bid;
     docName = dn;
     fileName = fn;
     dateObject = new DateOrganizer(dc, lu, lr, a, null, true);
 }
Esempio n. 2
0
 public ProjectDocumentData(int i, int pid, String dn, String fn, DateTime dc, DateTime lu, DateTime lr, DateTime a, DateTime d)
 {
     id = i;
     projectId = pid;
     docName = dn;
     fileName = fn;
     dateObject = new DateOrganizer(dc, lu, lr, a, d, true);
 }
Esempio n. 3
0
 public Project(int i, int bid, String pn, String fcs, String scs, String cty, String stt, String card, String ln, Decimal aq, Decimal ic, DateTime dc, DateTime lu, DateTime lr, DateTime a, DateTime d, int tlc)
 {
     id = i;
     builderId = bid;
     projectName = pn;
     firstCrossStreet = fcs;
     secondCrossStreet = scs;
     city = cty;
     state = stt;
     cardinal = card;
     location_notes = ln;
     improvementCost = ic;
     totalLotCount = tlc;
     aquisitionPrice = 0;
     dateObject = new DateOrganizer(dc, lu, lr, a, d, true);
 }