예제 #1
0
		public ProductsController(IProductsCatalogService catalogService)
		{
			this.catalogService = catalogService;
		}
예제 #2
0
 public Shop(IProductsCatalogService productsCatalogService, IOrdersService ordersService)
 {
     _id = Guid.NewGuid();
     _productsCatalogService = productsCatalogService;
     _ordersService          = ordersService;
 }
 public ProductsController(IProductsCatalogService catalogService)
 {
     this.catalogService = catalogService;
 }