Beispiel #1
0
 public CommentService(IntroDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Beispiel #2
0
 public MovieService(IntroDbContext dbContext)
 {
     this.DbContext = dbContext;
 }
Beispiel #3
0
 public CakesController(IntroDbContext context)
 {
     this.context = context;
 }
Beispiel #4
0
 public CommentsService(IntroDbContext context)
 {
     this.context = context;
 }
Beispiel #5
0
 public MovieController(IntroDbContext context)
 {
     this.context = context;
 }
Beispiel #6
0
 public ExpensesController(IntroDbContext context)
 {
     this.context = context;
 }
Beispiel #7
0
 /// <summary>
 /// Contructor for Service
 /// </summary>
 /// <param name="context">Repo</param>
 public ExpensesService(IntroDbContext context)
 {
     this.context = context;
 }