Ejemplo n.º 1
0
 /// <summary>
 /// Inject the VodafoneDbContext in the Service class using ctor injection
 /// </summary>
 public ProductService(VodafoneDbContext ctx)
 {
     this.ctx = ctx;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Inject the VodafoneDbContext in the Service class using ctor injection
 /// </summary>
 public CategoryService(VodafoneDbContext ctx)
 {
     this.ctx = ctx;
 }