测试
This commit is contained in:
10
MinimalAPI/Services/ICategoryService.cs
Normal file
10
MinimalAPI/Services/ICategoryService.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using HardwarePerformance.Models.DTOs;
|
||||
|
||||
namespace HardwarePerformance.Services
|
||||
{
|
||||
public interface ICategoryService
|
||||
{
|
||||
Task<IEnumerable<CategoryDto>> GetAllCategoriesAsync();
|
||||
Task<CategoryDto?> GetCategoryByIdAsync(int id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user