예제 #1
0
 //Default Constructor
 public WatchListController(IWatchListService WatchListService, IOrderWatchList OrderWatchList, IRepo <Customer> Customers)
 {
     this.watchListService      = WatchListService;
     this.orderWatchListService = OrderWatchList;
     this.customers             = Customers;
 }
 public WatchListManagerController(IOrderWatchList OrderWatchListService)
 {
     this.orderWatchListService = OrderWatchListService;
 }
예제 #3
0
 //Default Constructor
 public UserWatchListController(IOrderWatchList OrderWatchListService)
 {
     this.orderWatchListService = OrderWatchListService;
 }