コード例 #1
0
 public CustomerRepository()
 {
     accessDal = new MockCustomerDal();
 }
コード例 #2
0
 public ProductRepository()
 {
     accessDal = new MockProductDal();
 }
コード例 #3
0
 public MarketRepository()
 {
     accessDal = new MarketDal();
 }
コード例 #4
0
 public CrudController(ICrudDal <TEntity> crudDal)
 {
     this.crudDal = crudDal;
 }