Removed v7 import shit

This commit is contained in:
2020-05-01 01:00:39 +00:00
parent 026fa3a29c
commit bb10dc726d
15 changed files with 46 additions and 1241 deletions

View File

@@ -1,21 +0,0 @@
using System;
using AyaNova.Biz;
namespace AyaNova.Models
{
/// <summary>
/// Provides mapping during import
/// </summary>
public partial class ImportAyaNova7MapItem
{
public AyaTypeId NewObjectAyaTypeId { get; set; }
public Guid V7ObjectId { get; set; }
public ImportAyaNova7MapItem(Guid v7Guid, AyaType ayaType, long newId)
{
NewObjectAyaTypeId = new AyaTypeId(ayaType, newId);
V7ObjectId = v7Guid;
}
}
}