Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created April 26, 2018 06:39
Embed
What would you like to do?
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