This commit is contained in:
Marc Wieland
2025-09-26 08:51:10 +02:00
commit da8f1f8ba3
195 changed files with 8237 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using api.Models;
namespace api.Interfaces
{
public interface IStockRepository
{
Task<List<Stock>> GetAllAsync();
}
}