Exemplo n.º 1
0
 public Deliverable(object id, Config config, Deliverables deliverableList)
 {
     _id              = int.Parse(id.ToString());
     _config          = config;
     _deliverableList = deliverableList;
 }
Exemplo n.º 2
0
 public DeliverableGroup(string customString1, Config config, Deliverables deliverableList)
 {
     _customString1   = customString1;
     _config          = config;
     _deliverableList = deliverableList;
 }
Exemplo n.º 3
0
 public Deliverable(int id, Config config, Deliverables deliverableList)
 {
     _id              = id;
     _config          = config;
     _deliverableList = deliverableList;
 }