Files
StockHistory/StockHistory/Services/ITransactionNotesServices.cs
2026-07-10 08:53:11 +02:00

14 lines
453 B
C#

using StockHistory.Models;
namespace StockHistory.Services
{
public interface ITransactionNotesServices
{
Task AddAsync(TransactionNote transactionNote);
Task DeleteAsync(int id);
Task<List<TransactionNote>> GetAllAsync();
Task<TransactionNote?> GetByIdAsync(int id);
Task<List<TransactionNote>> GetByStockCodeAsync(string stockCode);
Task UpdateAsync(TransactionNote transactionNote);
}
}