Files
it/MinimalAPI/Services/ICategoryService.cs
2025-11-03 17:03:57 +08:00

10 lines
253 B
C#

using HardwarePerformance.Models.DTOs;
namespace HardwarePerformance.Services
{
public interface ICategoryService
{
Task<IEnumerable<CategoryDto>> GetAllCategoriesAsync();
Task<CategoryDto?> GetCategoryByIdAsync(int id);
}
}