Exemplo n.º 1
0
 // mock constructor
 public CustomersController(ICustomersMock mock)
 {
     this.db = mock;
 }
Exemplo n.º 2
0
 // default constructor uses the live db
 public CustomersController()
 {
     this.db = new EFCustomers();
 }