Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TimeEntryController"/> class.
 /// </summary>
 /// <param name="processor">The entity processor.</param>
 public TimeEntryController(ITimeEntryProcessor processor)
 {
     _processor = processor;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TimeEntryController"/> class.
 /// </summary>
 public TimeEntryController()
 {
     _processor = new TimeEntryProcessor();
 }