Example #1
0
 public WorkDone(Client client, WorkType workType, DateTimeOffset startedOn, DateTimeOffset?endedOn) : this(client, workType, startedOn)
 {
     EndedOn = endedOn;
 }
Example #2
0
 public WorkDone(Client client, WorkType workType)
 {
     Client    = client;
     WorkType  = workType;
     StartedOn = DateTimeOffset.Now;
 }
Example #3
0
 public WorkDone(Client client, WorkType workType, DateTimeOffset startedOn) : this(client, workType)
 {
     StartedOn = startedOn;
 }
Example #4
0
 public WorkDone(int id, Client client, WorkType workType, DateTimeOffset startedOn, DateTimeOffset?endedOn) : this(client, workType, startedOn, endedOn)
 {
     Id = id;
 }