Files
mixtape/zero.Debug/Controllers/MigrationController.cs
T
2020-11-15 17:07:27 +01:00

15 lines
288 B
C#

using Microsoft.AspNetCore.Mvc;
using zero.Core.Database;
namespace zero.Debug.Controllers
{
public partial class MigrationController : Controller
{
private IZeroStore Store { get; set; }
public MigrationController(IZeroStore store)
{
Store = store;
}
}
}