10 lines
253 B
C#
10 lines
253 B
C#
using HardwarePerformance.Models.DTOs;
|
|
|
|
namespace HardwarePerformance.Services
|
|
{
|
|
public interface ICategoryService
|
|
{
|
|
Task<IEnumerable<CategoryDto>> GetAllCategoriesAsync();
|
|
Task<CategoryDto?> GetCategoryByIdAsync(int id);
|
|
}
|
|
} |