22 lines
677 B
C#
22 lines
677 B
C#
|
using System;
|
|||
|
using HanyadikHetVan.Data;
|
|||
|
using HanyadikHetVan.Data.Entities;
|
|||
|
using Microsoft.AspNetCore.Hosting;
|
|||
|
using Microsoft.AspNetCore.Identity;
|
|||
|
using Microsoft.AspNetCore.Identity.UI;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.Extensions.Configuration;
|
|||
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|||
|
[assembly: HostingStartup(typeof(HanyadikHetVan.Areas.Identity.IdentityHostingStartup))]
|
|||
|
namespace HanyadikHetVan.Areas.Identity
|
|||
|
{
|
|||
|
public class IdentityHostingStartup : IHostingStartup
|
|||
|
{
|
|||
|
public void Configure(IWebHostBuilder builder)
|
|||
|
{
|
|||
|
builder.ConfigureServices((context, services) => {
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
}
|