fixed your tenders filters and service and home your tneders use your tenders service

This commit is contained in:
amirrezaghabeli
2025-09-08 09:53:21 +03:30
parent 326f2deeec
commit 9a1ec0b34e
23 changed files with 180 additions and 1279 deletions
+13 -6
View File
@@ -62,17 +62,24 @@ List<SingleChildWidget> get apiClients {
List<SingleChildWidget> get repositories {
return [
Provider(create: (context) => AuthRepository(authService: context.read())),
Provider(create: (context) => HomeRepository(homeService: context.read())),
Provider(
create:
(context) =>
TenderDetailRepository(tenderDetailService: context.read()),
),
Provider(
create:
(context) =>
YourTendersRepository(yourTendersService: context.read()),
),
Provider(
create:
(context) => HomeRepository(
homeService: context.read(),
yourTendersService: context.read(),
),
),
Provider(
create:
(context) =>
TenderDetailRepository(tenderDetailService: context.read()),
),
Provider(
create:
(context) =>