using Microsoft.AspNet.Mvc; namespace Yavsc.ApiControllers { using Models; /// /// Base class for managing performers profiles /// [Produces("application/json"),Route("api/profile")] public abstract class ProfileApiController : Controller { ApplicationDbContext dbContext; public ProfileApiController(ApplicationDbContext context) { dbContext = context; } } }