Files
mixtape/zero.Core/Api/ExportApi.cs
T
2021-05-04 17:23:52 +02:00

37 lines
841 B
C#

//using Raven.Client.Documents;
//using Raven.Client.Documents.Linq;
//using Raven.Client.Documents.Session;
//using System;
//using System.Collections.Generic;
//using System.Linq;
//using System.Threading.Tasks;
//using zero.Core.Entities;
//using zero.Core.Extensions;
//namespace zero.Core.Api
//{
// public class ExportApi : AppAwareBackofficeApi, IExportApi
// {
// public ExportApi(IBackofficeStore store) : base(store)
// {
// }
// /// <inheritdoc />
// public Space Export<T>(T config) where T : IExportConfig
// {
// Type type = typeof(T);
// return GetAll().FirstOrDefault(x => x.Type == type);
// }
// }
// public interface IExportApi
// {
// /// <summary>
// /// Returns a space by a defined generic
// /// </summary>
// Space GetBy<T>() where T : SpaceContent;
// }
//}