Example #1
0
 public SportSupplementController(ISportSupplementService _service)
 {
     this.service = _service;
 }
Example #2
0
 public CartController(ISportSupplementService _service, IOrderProcessor order)
 {
     this.service        = _service;
     this.orderProcessor = order;
 }