fix
This commit is contained in:
8
lib/features/products/domain/domain.dart
Normal file
8
lib/features/products/domain/domain.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
/// Export all products domain layer components
|
||||
///
|
||||
/// Contains entities, repository interfaces, and use cases
|
||||
library;
|
||||
|
||||
export 'entities/entities.dart';
|
||||
export 'repositories/product_repository.dart';
|
||||
export 'usecases/usecases.dart';
|
||||
6
lib/features/products/domain/entities/entities.dart
Normal file
6
lib/features/products/domain/entities/entities.dart
Normal file
@@ -0,0 +1,6 @@
|
||||
/// Export all products domain entities
|
||||
///
|
||||
/// Contains core business entities for products
|
||||
library;
|
||||
|
||||
export 'product.dart';
|
||||
7
lib/features/products/domain/usecases/usecases.dart
Normal file
7
lib/features/products/domain/usecases/usecases.dart
Normal file
@@ -0,0 +1,7 @@
|
||||
/// Export all products domain use cases
|
||||
///
|
||||
/// Contains business logic for product operations
|
||||
library;
|
||||
|
||||
export 'get_all_products.dart';
|
||||
export 'search_products.dart';
|
||||
Reference in New Issue
Block a user