yavsc/Yavsc/ApiControllers/ProfileApiController.cs

17 lines
427 B
C#
Raw Normal View History

2017-01-06 14:02:17 +01:00
using Microsoft.AspNet.Mvc;
namespace Yavsc.ApiControllers
{
2017-01-06 14:55:48 +01:00
using Models;
using Models.Workflow;
2017-01-06 14:02:17 +01:00
[Produces("application/json"),Route("api/profile")]
public abstract class ProfileApiController<T> : Controller where T : PerformerProfile
{
ApplicationDbContext dbContext;
public ProfileApiController(ApplicationDbContext context)
{
dbContext = context;
}
}
}