Spaces:
Running
Running
| using FlowAPI.Domain.Entities; | |
| namespace FlowAPI.Application.Interfaces | |
| { | |
| public interface IEdgeRepository : IGenericRepository<Edge> | |
| { | |
| Task<IEnumerable<Edge>> GetAllByGraphIdAsync(Guid graphId); | |
| } | |
| } | |