ca015f5c69
- aggiunta Map - spostato lettura ini in environment - aggiornato debug in file .ps1
33 lines
658 B
VB.net
33 lines
658 B
VB.net
Module Map
|
|
|
|
Private m_refMainWindowVM As MainWindowVM
|
|
|
|
#Region "Get"
|
|
|
|
Public ReadOnly Property refMainWindowVM As MainWindowVM
|
|
Get
|
|
Return m_refMainWindowVM
|
|
End Get
|
|
End Property
|
|
|
|
#End Region ' Get
|
|
|
|
#Region "Set"
|
|
|
|
#End Region ' Set
|
|
|
|
#Region "Init"
|
|
|
|
Friend Function BeginInit(MainWindowVM As MainWindowVM) As Boolean
|
|
m_refMainWindowVM = MainWindowVM
|
|
Return Not IsNothing(m_refMainWindowVM)
|
|
End Function
|
|
Friend Function EndInit() As Boolean
|
|
' Verifico se tutti i pezzi necessari sono stati caricati
|
|
Return Not IsNothing(m_refMainWindowVM)
|
|
End Function
|
|
|
|
#End Region ' Init
|
|
|
|
End Module
|