| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Services.Test
- {
- public interface IDbRelationService
- {
- /// <summary>
- /// Serialize all existing entities of the current DbContext
- /// </summary>
- /// <param name="depth">The depth the serialization should dive in.</param>
- /// <param name="format">The output format.</param>
- /// <returns>Return all entities either in JSON- or XML-format.</returns>
- List<string> GetRelations(int depth, DbRelationFormat format);
- }
- }
|