Finally got the api working properly

This commit is contained in:
2026-04-01 13:10:01 +10:30
parent 5407c7db55
commit ad107753b5
6 changed files with 24 additions and 19 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ namespace Emergence.services.Interface
{
public interface IService<T, I> where T : class
{
public Task<IList<T>> GetAllAsync();
public Task<IEnumerable<T>> GetAllAsync();
public Task<T> GetByIdAsync(I id);
}
}