Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created April 26, 2018 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/d2796ba67bdc15910e8baa371caf2c8d to your computer and use it in GitHub Desktop.
Save Ibro/d2796ba67bdc15910e8baa371caf2c8d to your computer and use it in GitHub Desktop.
public class CategoriesController : Controller
{
private readonly ApplicationDbContext _context;
private readonly IAuthorizationService _authorizationService;
public CategoriesController(ApplicationDbContext context, IAuthorizationService authorizationService)
{
_context = context;
_authorizationService = authorizationService;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment