refactor: Umbenennung von GTX in Gtx und GTXMessagingConfig in SmsParams
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
using EnvelopeGenerator.Application.Configurations;
|
||||
using EnvelopeGenerator.Application.Configurations.GtxMessaging;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
namespace EnvelopeGenerator.Application.Services
|
||||
{
|
||||
public class GTXMessagingService
|
||||
public class GtxMessagingService
|
||||
{
|
||||
private readonly string _authKey;
|
||||
private readonly SmsParams _smsParams;
|
||||
|
||||
public GTXMessagingService(IOptions<GTXMessagingConfig> options)
|
||||
public GtxMessagingService(IOptions<SmsParams> smsParamsOptions)
|
||||
{
|
||||
_authKey = options.Value.AuthKey;
|
||||
_smsParams = smsParamsOptions.Value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user