20 lines
350 B
VB.net
20 lines
350 B
VB.net
Imports DigitalData.Modules.Base
|
|
Imports DigitalData.Modules.Logging
|
|
|
|
Public Class EmailService
|
|
Inherits BaseClass
|
|
|
|
Public Sub New(pState As State)
|
|
MyBase.New(pState.LogConfig)
|
|
End Sub
|
|
|
|
Public Function SendSignedEmail(pReceiverId As Integer, pEnvelopeId As Integer)
|
|
|
|
Dim oEnvelope =
|
|
|
|
|
|
End Function
|
|
|
|
|
|
End Class
|