mirror of
https://github.com/InsanusMokrassar/PsychomatrixBase.git
synced 2025-09-16 13:49:31 +00:00
improve system of DI
This commit is contained in:
@@ -1,10 +1,13 @@
|
|||||||
package com.github.insanusmokrassar.PsychomatrixBase.di.realisations
|
package com.github.insanusmokrassar.PsychomatrixBase.di.realisations
|
||||||
|
|
||||||
import com.github.insanusmokrassar.PsychomatrixBase.di.PresentationLayerDI
|
import com.github.insanusmokrassar.PsychomatrixBase.di.PresentationLayerDI
|
||||||
|
import com.github.insanusmokrassar.PsychomatrixBase.di.UseCasesDI
|
||||||
import com.github.insanusmokrassar.PsychomatrixBase.presentation.presenters.DatePickerPresenter
|
import com.github.insanusmokrassar.PsychomatrixBase.presentation.presenters.DatePickerPresenter
|
||||||
import com.github.insanusmokrassar.PsychomatrixBase.presentation.presenters.DefaultRealisations.DatePickerPresenterImpl
|
import com.github.insanusmokrassar.PsychomatrixBase.presentation.presenters.DefaultRealisations.DatePickerPresenterImpl
|
||||||
|
|
||||||
open class PresentationLayerDIImpl : PresentationLayerDI, UseCasesDIImpl() {
|
open class PresentationLayerDIImpl(
|
||||||
|
useCasesDI: UseCasesDI
|
||||||
|
) : PresentationLayerDI, UseCasesDI by useCasesDI {
|
||||||
|
|
||||||
override val datePickerPresenter: DatePickerPresenter by lazy {
|
override val datePickerPresenter: DatePickerPresenter by lazy {
|
||||||
DatePickerPresenterImpl(
|
DatePickerPresenterImpl(
|
||||||
|
@@ -1,7 +1,10 @@
|
|||||||
package com.github.insanusmokrassar.PsychomatrixBase.di.realisations
|
package com.github.insanusmokrassar.PsychomatrixBase.di.realisations
|
||||||
|
|
||||||
|
import com.github.insanusmokrassar.PsychomatrixBase.di.PresentationLayerDI
|
||||||
import com.github.insanusmokrassar.PsychomatrixBase.di.UIDI
|
import com.github.insanusmokrassar.PsychomatrixBase.di.UIDI
|
||||||
|
|
||||||
class UIDIImpl : UIDI, PresentationLayerDIImpl() {
|
class UIDIImpl(
|
||||||
|
presentationLayerDI: PresentationLayerDI
|
||||||
|
) : UIDI, PresentationLayerDI by presentationLayerDI {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,10 +1,13 @@
|
|||||||
package com.github.insanusmokrassar.PsychomatrixBase.di.realisations
|
package com.github.insanusmokrassar.PsychomatrixBase.di.realisations
|
||||||
|
|
||||||
|
import com.github.insanusmokrassar.PsychomatrixBase.di.EntitiesDI
|
||||||
import com.github.insanusmokrassar.PsychomatrixBase.di.UseCasesDI
|
import com.github.insanusmokrassar.PsychomatrixBase.di.UseCasesDI
|
||||||
import com.github.insanusmokrassar.PsychomatrixBase.domain.UseCases.CalculatePsychomatrixByDate
|
import com.github.insanusmokrassar.PsychomatrixBase.domain.UseCases.CalculatePsychomatrixByDate
|
||||||
import com.github.insanusmokrassar.PsychomatrixBase.domain.interactors.CalculatePsychomatrixByDateInteractor
|
import com.github.insanusmokrassar.PsychomatrixBase.domain.interactors.CalculatePsychomatrixByDateInteractor
|
||||||
|
|
||||||
open class UseCasesDIImpl : UseCasesDI, EntitiesDIImpl() {
|
open class UseCasesDIImpl(
|
||||||
|
entitiesDI: EntitiesDI
|
||||||
|
) : UseCasesDI, EntitiesDI by entitiesDI {
|
||||||
|
|
||||||
override val calculatePsychomatrixByDate: CalculatePsychomatrixByDate by lazy {
|
override val calculatePsychomatrixByDate: CalculatePsychomatrixByDate by lazy {
|
||||||
CalculatePsychomatrixByDateInteractor()
|
CalculatePsychomatrixByDateInteractor()
|
||||||
|
Reference in New Issue
Block a user