FlowAPI / FlowAPI.Application /Interfaces /IEdgeRepository.cs
danylokhodus's picture
init
b9c7f0e
Raw
History Blame Contribute Delete
221 Bytes
using FlowAPI.Domain.Entities;
namespace FlowAPI.Application.Interfaces
{
public interface IEdgeRepository : IGenericRepository<Edge>
{
Task<IEnumerable<Edge>> GetAllByGraphIdAsync(Guid graphId);
}
}