14 lines
280 B
C#
Raw Normal View History

2025-03-17 22:17:28 +08:00
using Seyounth.Hyosung.Data.Models;
namespace Seyounth.Hyosung.Data.Services;
public interface IPalletService
{
List<Pallet> GetPallets();
Task<int> AddPalletAsync(Pallet pallet);
Task DeletePalletAsync(Pallet pallet);
Task UpdatePalletAsync(Pallet pallet);
}