15 lines
288 B
C#
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;
|
|
}
|
|
}
|
|
} |