示例#1
0
 public SellingItemsController(ISellingItemsService sellingItems)
 {
     this.sellingItems = sellingItems;
 }
示例#2
0
 public HomeController(IArticlesService articles, ICoursesService courses, ISellingItemsService sellingItems)
 {
     this.articles     = articles;
     this.courses      = courses;
     this.sellingItems = sellingItems;
 }
 public ShopController(ISellingItemsService items)
 {
     this.items = items;
 }
 public HomeController(IArticlesService articles, ICoursesService courses, ISellingItemsService sellingItems)
 {
     this.articles = articles;
     this.courses = courses;
     this.sellingItems = sellingItems;
 }
 public ShopController(ISellingItemsService items)
 {
     this.items = items;
 }
 public SellingItemsController(ISellingItemsService sellingItems)
 {
     this.sellingItems = sellingItems;
 }