//Initializes the interfaces by creating instances public SalesController(ICustomerInterface accesslayer, IStockInterface stock) { this._objCustomer = accesslayer; this._objStock = stock; }
//Initilizes the IStockInterface by creating an instance public StockController(IStockInterface accesslayer) { this._objStock = accesslayer; }