yavsc/Yavsc/ApiControllers/ProfileApiController.cs

17 lines
427 B
C#

using Microsoft.AspNet.Mvc;
namespace Yavsc.ApiControllers
{
9 years ago
using Models;
using Models.Workflow;
[Produces("application/json"),Route("api/profile")]
public abstract class ProfileApiController<T> : Controller where T : PerformerProfile
{
ApplicationDbContext dbContext;
public ProfileApiController(ApplicationDbContext context)
{
dbContext = context;
}
}
}