Skip to content

Instantly share code, notes, and snippets.

@devmobasa
Created April 26, 2018 06:39
Show Gist options
  • Select an option

  • Save devmobasa/d2796ba67bdc15910e8baa371caf2c8d to your computer and use it in GitHub Desktop.

Select an option

Save devmobasa/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