yavsc/Yavsc/Controllers/FormationSettingsController.cs

15 lines
347 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;
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-03-06 02:04:33 +01:00
public FormationSettingsController(ApplicationDbContext context) : base(context)
2017-03-05 16:32:38 +01:00
{
}
}
}