Ejemplo n.º 1
0
 public OrdersService(MyExamDbContext context)
     : base(context)
 {
 }
Ejemplo n.º 2
0
 public UsersService(MyExamDbContext db, IHashService hashService)
     : base(db)
 {
     this.hashService = hashService;
 }
 public TasksService(MyExamDbContext context)
     : base(context)
 {
 }
 public ProductsService(MyExamDbContext context)
     : base(context)
 {
 }
Ejemplo n.º 5
0
 public ReceiptsService(MyExamDbContext context)
     : base(context)
 {
 }
Ejemplo n.º 6
0
 protected BaseService(MyExamDbContext context)
 {
     this.Db = context;
 }
 public ReportsService(MyExamDbContext context)
     : base(context)
 {
 }