public WorkFlowStepRepository(SimpleBlogContext context) : base(context) { }
public CategoriesController(SimpleBlogContext context) { _context = context; }
public UserRepository(SimpleBlogContext context) { _context = context; }
public CategoryController(SimpleBlogContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public UserRoleRepository(SimpleBlogContext context) : base(context) { }
public PostRepository(SimpleBlogContext context) { _context = context; }
public ProfileRepository(SimpleBlogContext context) { _context = context; }
public PostRepository(SimpleBlogContext context) : base(context) { }