Fase 2: Implementación de la Matriz de Operaciones (Backend & Frontend)

This commit is contained in:
2025-12-17 13:21:50 -03:00
parent 523a8394ae
commit fae9101c63
8 changed files with 251 additions and 1 deletions

View File

@@ -9,4 +9,7 @@ public interface ICategoryRepository
Task UpdateAsync(Category category);
Task DeleteAsync(int id);
Task<IEnumerable<Category>> GetSubCategoriesAsync(int parentId);
Task<IEnumerable<Operation>> GetOperationsAsync(int categoryId);
Task AddOperationAsync(int categoryId, int operationId);
Task RemoveOperationAsync(int categoryId, int operationId);
}