Example #1
0
 public BillsController(IBillServices billServices, IPriceListServices priceListServices)
 {
     this.billServices      = billServices;
     this.priceListServices = priceListServices;
 }
Example #2
0
 public ServicesController(IPriceListServices priceListServices, IBillServices billServices, IPackageServices packageServices)
 {
     this.priceListServices = priceListServices;
     this.billServices      = billServices;
     this.packageServices   = packageServices;
 }
Example #3
0
 public PriceListController(IPriceListServices priceListServices)
 {
     this.priceListServices = priceListServices;
 }