Files
it/MinimalAPI/Services/ICategoryService.cs

10 lines
253 B
C#
Raw Normal View History

2025-11-03 17:03:57 +08:00
using HardwarePerformance.Models.DTOs;
namespace HardwarePerformance.Services
{
public interface ICategoryService
{
Task<IEnumerable<CategoryDto>> GetAllCategoriesAsync();
Task<CategoryDto?> GetCategoryByIdAsync(int id);
}
}