15 lines
396 B
C#
15 lines
396 B
C#
using EnvelopeGenerator.Application.Configurations.GtxMessaging;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace EnvelopeGenerator.Application.Services
|
|
{
|
|
public class GtxMessagingService
|
|
{
|
|
private readonly SmsParams _smsParams;
|
|
|
|
public GtxMessagingService(IOptions<SmsParams> smsParamsOptions)
|
|
{
|
|
_smsParams = smsParamsOptions.Value;
|
|
}
|
|
}
|
|
} |