-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
63 lines (47 loc) · 2.54 KB
/
Program.cs
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
59
60
61
62
63
using CrmApplication.Models;
using Microsoft.EntityFrameworkCore;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddCloudy(cloudy => cloudy
.AddAdmin(admin => admin.Unprotect()) // NOTE: Admin UI will be publicly available!
.AddAzureMediaPicker()
.AddContext<MyContext>() // Adds EF Core context with your content types
);
builder.Services.AddDbContext<MyContext>(options => options
.UseInMemoryDatabase("cloudytest")
);
var app = builder.Build();
// Configure the HTTP request pipeline.
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();
}
// seed with some data
using (var scope = app.Services.CreateScope())
{
var context = scope.ServiceProvider.GetService<MyContext>();
context.Companies.Add(new Company { Id = 1, Name = "IBM", Image = "https://cloudytest.blob.core.windows.net/media/logos/ibm.png" });
context.Companies.Add(new Company { Id = 2, Name = "HP", Image = "https://cloudytest.blob.core.windows.net/media/logos/hp.png" });
context.Customers.Add(new Person { Id = 11, Name = "John Doe", CompanyId = 1 });
context.Customers.Add(new Person { Id = 12, Name = "Jane Doe", CompanyId = 1 });
context.Customers.Add(new Person { Id = 13, Name = "James Boe", CompanyId = 2 });
context.Opportunities.Add(new Opportunity { Id = 1, Name = "Possible prestudy for IBM", Company = 1, ContactPerson = 11, Level = Opportunity.OpportunityLevel.High, Product = 22 });
context.Quotes.Add(new Quote { Id = 1, Name = "New quote for IBM", Price = 5000 });
context.Orders.Add(new Order { Id = 1, Name = "IBM ordered prestudy", CompanyId = 1, ContactId = 11 });
context.Invoices.Add(new Invoice { Id = 1, Name = "Invoice for prestudy", OrderId = 1, PayBy = DateOnly.FromDateTime(DateTime.Now.AddDays(30)), SentBy = DateOnly.FromDateTime(DateTime.Now) });
context.Products.Add(new Product { Id = 21, Name = "360-degree analysis" });
context.Products.Add(new Product { Id = 22, Name = "Prestudy" });
context.Products.Add(new Product { Id = 23, Name = "Security audit, 24h service" });
context.SaveChanges();
}
app.UseHttpsRedirection();
app.UseStaticFiles(new StaticFileOptions().MustValidate());
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.MapRazorPages();
app.MapControllers();
app.MapGet("/", async c => c.Response.Redirect("/Admin"));
app.Run();