Beispiel #1
0
 public ProductService(TinyCrmDBcontext db)
 {
     db_ = db;
 }
Beispiel #2
0
 public OrderService(TinyCrmDBcontext db, ICustomerService customerservice)
 {
     db_ = db;
     customerservice_ = customerservice;
 }
Beispiel #3
0
 public CustomerService(TinyCrmDBcontext db)
 {
     db_ = db;
 }
 public CustomerController()
 {
     dbcontext_       = new TinyCrmDBcontext();
     customerService_ = new CustomerService(dbcontext_);
 }