예제 #1
0
 public CreateCommentCommandHandler(SampleBlogDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public CreatePostCommandHandler(SampleBlogDbContext sampleBlogDbContext)
 {
     _context = sampleBlogDbContext;
 }
 protected override void Seed(SampleBlogDbContext context)
 {
     context.DisableAllFilters();
     new BlogTestDataBuilder(context).Build();
 }
 public DefaultTenantRoleAndUserBuilder(SampleBlogDbContext context)
 {
     _context = context;
 }
 public BlogTestDataBuilder(SampleBlogDbContext context)
 {
     _context = context;
 }
 public DefaultTenantRoleAndUserBuilder(SampleBlogDbContext context)
 {
     _context = context;
 }
예제 #7
0
 public BlogTestDataBuilder(SampleBlogDbContext context)
 {
     _context = context;
 }
예제 #8
0
 public GetPostQueryHandler(SampleBlogDbContext context)
 {
     _context = context;
 }