Files
mixtape/zero.Debug/Controllers/MigrationController.cs
T

15 lines
288 B
C#
Raw Normal View History

2020-09-17 13:25:09 +02:00
using Microsoft.AspNetCore.Mvc;
2020-11-15 17:07:27 +01:00
using zero.Core.Database;
2020-09-17 13:08:16 +02:00
namespace zero.Debug.Controllers
{
2020-09-17 16:10:21 +02:00
public partial class MigrationController : Controller
2020-09-17 13:08:16 +02:00
{
2020-11-15 17:07:27 +01:00
private IZeroStore Store { get; set; }
2020-09-17 13:08:16 +02:00
2020-11-15 17:07:27 +01:00
public MigrationController(IZeroStore store)
2020-09-17 13:08:16 +02:00
{
2020-11-15 17:07:27 +01:00
Store = store;
2020-09-17 13:08:16 +02:00
}
}
}