removes warnings

This commit is contained in:
Paul Schneider 2017-01-06 14:55:48 +01:00
commit db7d7edc45
29 changed files with 25 additions and 63 deletions

View file

@ -1,11 +1,9 @@
using System.Linq;
using Microsoft.AspNet.Authorization;
using Microsoft.AspNet.Mvc;
using Yavsc.Models;
using Yavsc.Models.Workflow;
namespace Yavsc.ApiControllers
{
using Models;
using Models.Workflow;
[Produces("application/json"),Route("api/profile")]
public abstract class ProfileApiController<T> : Controller where T : PerformerProfile
{
@ -15,6 +13,5 @@ namespace Yavsc.ApiControllers
dbContext = context;
}
}
}