-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStartup.cs
More file actions
58 lines (50 loc) · 1.97 KB
/
Startup.cs
File metadata and controls
58 lines (50 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using ChatApplicationWithSQLServer.DataModels;
using ChatApplicationWithSQLServer.Interfaces;
using ChatApplicationWithSQLServer.Repositories;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using System.Configuration;
namespace ChatApplicationWithSQLServer
{
public class Startup
{
public IConfiguration configRoot
{
get;
}
public Startup(IConfiguration configuration)
{
configRoot = configuration;
//configuration.GetConnectionString("database_chatapplication");
}
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<ChatApplicationDBContext>(options =>
options.UseSqlServer(configRoot.GetConnectionString("database_chatapplication")));
//services.AddControllers();
services.AddControllers(options => options.EnableEndpointRouting = false);
services.AddRazorPages();
services.AddScoped<IUserRepository, UserRepository>();
services.AddScoped<IRoomRepository, RoomRepository>();
services.AddScoped<IChatRepository, ChatRepository>();
services.AddScoped<IUserRoomRepository, UserRoomRepository>();
services.AddMvcCore().AddApiExplorer();
services.AddSignalR();
services.AddSwaggerGen();
}
public void Configure(WebApplication app, IWebHostEnvironment env)
{
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseSwagger();
app.UseSwaggerUI(c => {
c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V2");
});
//app.UseCors();
}
}
}