yavsc/Yavsc/Controllers/FormationSettingsController.cs

16 lines
404 B
C#
Raw Normal View History

2017-03-06 02:04:33 +01:00
using Yavsc.Controllers.Generic;
2017-03-05 16:32:38 +01:00
using Yavsc.Models;
using Yavsc.Models.Workflow.Profiles;
2017-06-08 00:26:29 +02:00
using Yavsc.Services;
2017-03-05 16:32:38 +01:00
namespace Yavsc.Controllers
{
2017-03-06 02:04:33 +01:00
public class FormationSettingsController : SettingsController<FormationSettings>
2017-03-05 16:32:38 +01:00
{
2017-06-08 00:26:29 +02:00
public FormationSettingsController(ApplicationDbContext context, IBillingService billing) : base(context, billing)
2017-03-05 16:32:38 +01:00
{
}
}
}