Ejemplo n.º 1
0
 public GetChangeGreedyRecAlgorithmService(ICoinBoxService coinBoxService) : base(coinBoxService)
 {
 }
Ejemplo n.º 2
0
 public GetChangeDynamicProgrammingService(ICoinBoxService coinBoxService) : base(coinBoxService)
 {
 }
Ejemplo n.º 3
0
 public CommandReader(IGetChangeService getChangeService, ICoinBoxService coinBoxService)
 {
     this._getChangeService = getChangeService;
     this._coinBoxService   = coinBoxService;
 }
 protected GetChangeBaseService(ICoinBoxService coinBoxService)
 {
     this._coinBoxService = coinBoxService ?? throw new ArgumentNullException(nameof(coinBoxService));
 }