sync bloc

This commit is contained in:
efrilm
2025-10-24 22:25:01 +07:00
parent 4fdd1e44f8
commit 6892895021
10 changed files with 965 additions and 0 deletions
@@ -1,6 +1,10 @@
part of '../product.dart';
abstract class IProductRepository {
Future<Either<ProductFailure, Unit>> saveProductsBatch(
List<Product> products,
);
Future<Either<ProductFailure, ListProduct>> getProducts({
int page = 1,
int limit = 10,