Exemplo n.º 1
0
 public WorkFlowStepRepository(SimpleBlogContext context) : base(context)
 {
 }
 public CategoriesController(SimpleBlogContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public UserRepository(SimpleBlogContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public CategoryController(SimpleBlogContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 5
0
 public UserRoleRepository(SimpleBlogContext context) : base(context)
 {
 }
Exemplo n.º 6
0
 public PostRepository(SimpleBlogContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public ProfileRepository(SimpleBlogContext context)
 {
     _context = context;
 }
Exemplo n.º 8
0
 public PostRepository(SimpleBlogContext context) : base(context)
 {
 }