yavsc/Yavsc/ApiControllers/DjProfileApiController.cs

14 lines
292 B
C#
Raw Normal View History

2017-01-06 14:02:17 +01:00
namespace Yavsc.ApiControllers
{
2017-01-06 14:55:48 +01:00
using Models;
using Models.Booking;
2017-01-06 14:02:17 +01:00
public class DjProfileApiController : ProfileApiController<DjPerformerProfile>
{
public DjProfileApiController(ApplicationDbContext context) : base(context)
{
}
}
}