コード例 #1
0
 public ArticleService(
     TwentyFirstDbContext db,
     ICategoryService categoryService)
 {
     this.db = db;
     this.categoryService = categoryService;
 }
コード例 #2
0
 public LogService(TwentyFirstDbContext db)
 {
     this.db = db;
 }
コード例 #3
0
 public SubscriberService(TwentyFirstDbContext db)
 {
     this.db = db;
 }
コード例 #4
0
 public InterviewService(TwentyFirstDbContext db)
 {
     this.db = db;
 }
コード例 #5
0
 public ImageService(TwentyFirstDbContext db)
 {
     this.db = db;
 }
コード例 #6
0
 //set test context
 public DataServiceTests()
 {
     this.dbContext = new TwentyFirstDbContext(this.GetDbOptions());
     this.SetMapper();
 }
コード例 #7
0
 public CategoryService(TwentyFirstDbContext db)
 {
     this.db = db;
 }