(Portuguese speaker by the way, sorry if the question isn't clear)
I'm working on a 9 modular monolith architecture project(Modulith), the programmer who made the project just leave the company.
I'm using a module called RecebimentoCompras and after doing inclusion i need to use a method that is in the Faturamento Module.
Usually the modules are complete independent of each other, there are a Base module that is the main, and i add the others as dependencies, that allow me to compilate just the modules that i modified and release more easily.
Do anyone have any alternative?
Since i'm using mediatr i guess i could use the base module to declare the IRequest and just call from RecebimentoCompras, but i already did that for login and if i have to use this everytime i have to comunicate intermodules i think my base module is going to be a little mess.