示例#1
0
 public HourRateCreator(IHourRateStorage storage)
 {
     _storage = storage;
 }
示例#2
0
 public HourRateController(IHourRateStorage storage, HourRateCreator creator)
 {
     _storage = storage;
     _creator = creator;
 }