using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.AppAuth
{
public static class DataServiceCollectionExtensions
{
///
/// Aggiunta repository/servizi specifici per IOC
///
///
///
public static IServiceCollection AddAuthLandDataLayer(this IServiceCollection services)
{
return services;
}
}
}