using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TwilioSMSReceiver.Common.Handlers;
using TwilioSMSReceiver.Common.Interfaces;
namespace TwilioSMSReceiver.Common.Registrations
{
public static class RegisterDI
{
///
/// This registers all dependencies needed to support this app
///
/// The Service Collection that will hold all depedencies
public static void RegisterSMSExtensions(this IServiceCollection provider)
{
provider.AddScoped();
provider.AddScoped();
}
}
}