14 lines
324 B
C#
14 lines
324 B
C#
|
9 years ago
|
using Yavsc.Models;
|
||
|
|
using Yavsc.Models.Booking;
|
||
|
|
using Yavsc.Models.Workflow;
|
||
|
|
|
||
|
|
namespace Yavsc.ApiControllers
|
||
|
|
{
|
||
|
|
public class DjProfileApiController : ProfileApiController<DjPerformerProfile>
|
||
|
|
{
|
||
|
|
public DjProfileApiController(ApplicationDbContext context) : base(context)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|