injectModule method

  1. @override
Future injectModule()
override

Implementation

@override
Future injectModule() async {
  instance.registerLazySingletonAsync<NfeRepository>(
    () async => NfeRepositoryImpl(
      await instance.getAsync(),
      await instance.getAsync(),
    ),
  );
  instance.registerLazySingletonAsync<CreateNfeToRun>(
    () async => CreateNfeToRunImpl(
      await instance.getAsync(),
      await instance.getAsync(),
    ),
  );
  instance.registerLazySingletonAsync<GetNfeStatusByPeople>(
    () async => GetNfeStatusByPeopleImpl(
      await instance.getAsync(),
      await instance.getAsync(),
    ),
  );
}