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