This commit is contained in:
Phuoc Nguyen
2025-10-10 17:36:10 +07:00
parent 04f7042b8d
commit bdaf0b96c5
82 changed files with 4753 additions and 329 deletions

View File

@@ -0,0 +1,8 @@
/// Export all products data layer components
///
/// Contains data sources, models, and repository implementations
library;
export 'datasources/datasources.dart';
export 'models/models.dart';
export 'repositories/product_repository_impl.dart';

View File

@@ -0,0 +1,7 @@
/// Export all products data sources
///
/// Contains local and remote data sources for products
library;
export 'product_local_datasource.dart';
export 'product_remote_datasource.dart';

View File

@@ -0,0 +1,6 @@
/// Export all products data models
///
/// Contains DTOs and models for product data transfer
library;
export 'product_model.dart';