mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 09:52:23 +00:00
13 lines
348 B
C#
13 lines
348 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace FSO.Server.Database.DA.Relationships
|
|||
|
{
|
|||
|
public interface IRelationships
|
|||
|
{
|
|||
|
int UpdateMany(List<DbRelationship> entries);
|
|||
|
List<DbRelationship> GetOutgoing(uint entity_id);
|
|||
|
List<DbRelationship> GetBidirectional(uint entity_id);
|
|||
|
int Delete(uint entity_id);
|
|||
|
}
|
|||
|
}
|