MS Common
This commit is contained in:
@@ -28,7 +28,7 @@ Public MustInherit Class BaseController
|
||||
State = pState
|
||||
Database = pState.Database
|
||||
InitializeModels(pState)
|
||||
ActionService = New ActionService(pState, Nothing)
|
||||
ActionService = New ActionService(pState, Database)
|
||||
End Sub
|
||||
|
||||
Private Sub InitializeModels(pState As State)
|
||||
|
||||
@@ -22,7 +22,7 @@ Public Class EnvelopeEditorController
|
||||
Envelope = CreateEnvelope()
|
||||
Thumbnail = New Thumbnail(pState.LogConfig)
|
||||
EmailService = New EmailService(pState)
|
||||
ActionService = New ActionService(pState)
|
||||
ActionService = New ActionService(pState, Nothing)
|
||||
End Sub
|
||||
|
||||
Public Sub New(pState As State, pEnvelope As Envelope)
|
||||
@@ -33,7 +33,7 @@ Public Class EnvelopeEditorController
|
||||
Envelope.Receivers = ReceiverModel.ListEnvelopeReceivers(pEnvelope.Id).ToList()
|
||||
|
||||
Thumbnail = New Thumbnail(pState.LogConfig)
|
||||
ActionService = New ActionService(pState)
|
||||
ActionService = New ActionService(pState, Nothing)
|
||||
End Sub
|
||||
|
||||
#Region "Public"
|
||||
|
||||
Reference in New Issue
Block a user