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

27 lines
608 B
C#
Raw Normal View History

2020-09-17 13:25:09 +02:00
using Microsoft.AspNetCore.Mvc;
2020-09-17 13:08:16 +02:00
using Raven.Client.Documents;
using Raven.Client.Documents.Session;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using zero.Commerce.Entities;
using zero.Core;
using zero.Core.Api;
using zero.Core.Attributes;
using zero.Core.Entities;
using zero.Core.Extensions;
using zero.Core.Utils;
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
{
private IDocumentStore Raven { get; set; }
public MigrationController(IDocumentStore raven)
{
Raven = raven;
}
}
}