public SaleController()
 {
     saleWorker     = new SaleWorker();
     productWorker  = new ProductWorker();
     customerWorker = new CustomerWorker();
 }
 public ProductController()
 {
     productWorker = new ProductWorker();
 }
Example #3
0
 public ProductController(IProductWorker productWorker) : base()
 {
     m_productWorker = productWorker;
 }