Seed de 5 commande pour Admin
This commit is contained in:
parent
6d29d85edf
commit
13310f6cd0
@ -14,7 +14,7 @@ public class InventoryContext : IdentityDbContext<InventoryUser> {
|
|||||||
|
|
||||||
protected override void OnModelCreating(ModelBuilder modelBuilder) {
|
protected override void OnModelCreating(ModelBuilder modelBuilder) {
|
||||||
|
|
||||||
|
#region Products
|
||||||
// Pour partir la BD.
|
// Pour partir la BD.
|
||||||
modelBuilder.Entity<ProductModel>().HasData(new ProductModel {
|
modelBuilder.Entity<ProductModel>().HasData(new ProductModel {
|
||||||
Id = 1,
|
Id = 1,
|
||||||
@ -369,8 +369,9 @@ Pikachu is also the starter Pokémon of Pokémon Rumble Blast and Pokémon Rumbl
|
|||||||
Quantity = 69,
|
Quantity = 69,
|
||||||
ImageName = @"$pika.png"
|
ImageName = @"$pika.png"
|
||||||
});
|
});
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Users
|
||||||
// Source: Notre TP Web 4DW.
|
// Source: Notre TP Web 4DW.
|
||||||
string AdministrateurID = "c9e08b20-d8a5-473f-9f52-572eb23c12af";
|
string AdministrateurID = "c9e08b20-d8a5-473f-9f52-572eb23c12af";
|
||||||
string ClientID = "1b7b9c55-c746-493a-a24f-3d5ca937298e";
|
string ClientID = "1b7b9c55-c746-493a-a24f-3d5ca937298e";
|
||||||
@ -386,15 +387,6 @@ Pikachu is also the starter Pokémon of Pokémon Rumble Blast and Pokémon Rumbl
|
|||||||
Email = "admin@admin.com"
|
Email = "admin@admin.com"
|
||||||
};
|
};
|
||||||
|
|
||||||
//admin.Adresses.Add(new AddressModel() {
|
|
||||||
// CivicNumber = 1234,
|
|
||||||
// Appartment = "B",
|
|
||||||
// Street = "Rue Pierre-Falardeau",
|
|
||||||
// City = "Saint-Chrysostome",
|
|
||||||
// PostalCode = "H0H0H0",
|
|
||||||
// Province = "QC",
|
|
||||||
// Country = "Canada"
|
|
||||||
//});
|
|
||||||
|
|
||||||
admin.PasswordHash = new PasswordHasher<InventoryUser>().HashPassword(admin, "Qwerty123!");
|
admin.PasswordHash = new PasswordHasher<InventoryUser>().HashPassword(admin, "Qwerty123!");
|
||||||
modelBuilder.Entity<InventoryUser>().HasData(admin);
|
modelBuilder.Entity<InventoryUser>().HasData(admin);
|
||||||
@ -408,6 +400,188 @@ Pikachu is also the starter Pokémon of Pokémon Rumble Blast and Pokémon Rumbl
|
|||||||
new IdentityUserRole<string> { RoleId = AdministrateurID, UserId = AdminID },
|
new IdentityUserRole<string> { RoleId = AdministrateurID, UserId = AdminID },
|
||||||
new IdentityUserRole<string> { RoleId = ClientID, UserId = AdminID }
|
new IdentityUserRole<string> { RoleId = ClientID, UserId = AdminID }
|
||||||
);
|
);
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Addresses
|
||||||
|
modelBuilder.Entity<AddressModel>().HasData(
|
||||||
|
new {
|
||||||
|
Id = 1,
|
||||||
|
CivicNumber = 1234,
|
||||||
|
Appartment = "B",
|
||||||
|
Street = "Rue Pierre-Falardeau",
|
||||||
|
City = "Saint-Chrysostome",
|
||||||
|
PostalCode = "H0H0H0",
|
||||||
|
Province = "QC",
|
||||||
|
Country = "Canada",
|
||||||
|
InventoryUserId = AdminID,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region Invoices
|
||||||
|
modelBuilder.Entity<InvoiceModel>().HasData(
|
||||||
|
new {
|
||||||
|
Id = 1,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = AdminID,
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = DateTime.Now,
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = InvoiceModel.InStates.Confirmed,
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 2,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = AdminID,
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = DateTime.Now,
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = InvoiceModel.InStates.Cancelled,
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 3,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = AdminID,
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = DateTime.Now,
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = InvoiceModel.InStates.Shipping,
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 4,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = AdminID,
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = DateTime.Now,
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = InvoiceModel.InStates.Shipped,
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 5,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = AdminID,
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = DateTime.Now,
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = InvoiceModel.InStates.Returned,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
modelBuilder.Entity<InvoiceModel.ProductInvoice>().HasData(
|
||||||
|
// invoice 1
|
||||||
|
new {
|
||||||
|
Id = 1,
|
||||||
|
ProductId = 1,
|
||||||
|
Quantity = (uint)2,
|
||||||
|
InvoiceModelId = 1
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 2,
|
||||||
|
ProductId = 4,
|
||||||
|
Quantity = (uint)5,
|
||||||
|
InvoiceModelId = 1
|
||||||
|
},
|
||||||
|
|
||||||
|
// invoice 2
|
||||||
|
new {
|
||||||
|
Id = 3,
|
||||||
|
ProductId = 3,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 2
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 4,
|
||||||
|
ProductId = 5,
|
||||||
|
Quantity = (uint)2,
|
||||||
|
InvoiceModelId = 2
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 5,
|
||||||
|
ProductId = 7,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 2
|
||||||
|
},
|
||||||
|
|
||||||
|
// invoice 3
|
||||||
|
new {
|
||||||
|
Id = 6,
|
||||||
|
ProductId = 9,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 3
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 7,
|
||||||
|
ProductId = 11,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 3
|
||||||
|
},
|
||||||
|
|
||||||
|
// invoice 4
|
||||||
|
new {
|
||||||
|
Id = 8,
|
||||||
|
ProductId = 14,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 4
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 9,
|
||||||
|
ProductId = 13,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 4
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 10,
|
||||||
|
ProductId = 16,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 4
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 11,
|
||||||
|
ProductId = 24,
|
||||||
|
Quantity = (uint)25,
|
||||||
|
InvoiceModelId = 4
|
||||||
|
},
|
||||||
|
|
||||||
|
// invoice 5
|
||||||
|
new {
|
||||||
|
Id = 12,
|
||||||
|
ProductId = 25,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 5
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 13,
|
||||||
|
ProductId = 29,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 5
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 14,
|
||||||
|
ProductId = 30,
|
||||||
|
Quantity = (uint)1,
|
||||||
|
InvoiceModelId = 5
|
||||||
|
},
|
||||||
|
new {
|
||||||
|
Id = 15,
|
||||||
|
ProductId = 15,
|
||||||
|
Quantity = (uint)2,
|
||||||
|
InvoiceModelId = 5
|
||||||
|
}
|
||||||
|
);
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
base.OnModelCreating(modelBuilder);
|
base.OnModelCreating(modelBuilder);
|
||||||
}
|
}
|
||||||
|
995
GrossesMitaines/GrossesMitainesAPI/Migrations/20221108022705_address.Designer.cs
generated
Normal file
995
GrossesMitaines/GrossesMitainesAPI/Migrations/20221108022705_address.Designer.cs
generated
Normal file
@ -0,0 +1,995 @@
|
|||||||
|
// <auto-generated />
|
||||||
|
using System;
|
||||||
|
using GrossesMitainesAPI.Data;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||||
|
using Microsoft.EntityFrameworkCore.Metadata;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace GrossesMitainesAPI.Migrations
|
||||||
|
{
|
||||||
|
[DbContext(typeof(InventoryContext))]
|
||||||
|
[Migration("20221108022705_address")]
|
||||||
|
partial class address
|
||||||
|
{
|
||||||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
|
{
|
||||||
|
#pragma warning disable 612, 618
|
||||||
|
modelBuilder
|
||||||
|
.HasAnnotation("ProductVersion", "6.0.10")
|
||||||
|
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
||||||
|
|
||||||
|
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1);
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Data.InventoryUser", b =>
|
||||||
|
{
|
||||||
|
b.Property<string>("Id")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<int>("AccessFailedCount")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<string>("ConcurrencyStamp")
|
||||||
|
.IsConcurrencyToken()
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("Email")
|
||||||
|
.HasMaxLength(256)
|
||||||
|
.HasColumnType("nvarchar(256)");
|
||||||
|
|
||||||
|
b.Property<bool>("EmailConfirmed")
|
||||||
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
b.Property<string>("FirstName")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(30)
|
||||||
|
.HasColumnType("nvarchar(30)");
|
||||||
|
|
||||||
|
b.Property<string>("LastName")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(30)
|
||||||
|
.HasColumnType("nvarchar(30)");
|
||||||
|
|
||||||
|
b.Property<bool>("LockoutEnabled")
|
||||||
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
b.Property<DateTimeOffset?>("LockoutEnd")
|
||||||
|
.HasColumnType("datetimeoffset");
|
||||||
|
|
||||||
|
b.Property<string>("NormalizedEmail")
|
||||||
|
.HasMaxLength(256)
|
||||||
|
.HasColumnType("nvarchar(256)");
|
||||||
|
|
||||||
|
b.Property<string>("NormalizedUserName")
|
||||||
|
.HasMaxLength(256)
|
||||||
|
.HasColumnType("nvarchar(256)");
|
||||||
|
|
||||||
|
b.Property<string>("PasswordHash")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("PhoneNumber")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<bool>("PhoneNumberConfirmed")
|
||||||
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
b.Property<string>("SecurityStamp")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<bool>("TwoFactorEnabled")
|
||||||
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
b.Property<string>("UserName")
|
||||||
|
.HasMaxLength(256)
|
||||||
|
.HasColumnType("nvarchar(256)");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("NormalizedEmail")
|
||||||
|
.HasDatabaseName("EmailIndex");
|
||||||
|
|
||||||
|
b.HasIndex("NormalizedUserName")
|
||||||
|
.IsUnique()
|
||||||
|
.HasDatabaseName("UserNameIndex")
|
||||||
|
.HasFilter("[NormalizedUserName] IS NOT NULL");
|
||||||
|
|
||||||
|
b.ToTable("AspNetUsers", (string)null);
|
||||||
|
|
||||||
|
b.HasData(
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
AccessFailedCount = 0,
|
||||||
|
ConcurrencyStamp = "037567cb-829a-4e64-aeff-77f9c18425b5",
|
||||||
|
Email = "admin@admin.com",
|
||||||
|
EmailConfirmed = false,
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LockoutEnabled = false,
|
||||||
|
NormalizedEmail = "ADMIN@ADMIN.COM",
|
||||||
|
NormalizedUserName = "ADMIN",
|
||||||
|
PasswordHash = "AQAAAAEAACcQAAAAEE/NtmY1fEUixw6DTC/uv+7yv+2Na/85xzU7pJgB5Ll7UZUmcUZxuVLcgYkb9sKPOA==",
|
||||||
|
PhoneNumberConfirmed = false,
|
||||||
|
SecurityStamp = "a39900db-f0c6-4a7c-9cee-d8f454dd2516",
|
||||||
|
TwoFactorEnabled = false,
|
||||||
|
UserName = "Admin"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Models.AddressModel", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||||
|
|
||||||
|
b.Property<string>("Appartment")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("City")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(50)
|
||||||
|
.HasColumnType("nvarchar(50)");
|
||||||
|
|
||||||
|
b.Property<int>("CivicNumber")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<string>("Country")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(30)
|
||||||
|
.HasColumnType("nvarchar(30)");
|
||||||
|
|
||||||
|
b.Property<string>("InventoryUserId")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<string>("PostalCode")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("Province")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(3)
|
||||||
|
.HasColumnType("nvarchar(3)");
|
||||||
|
|
||||||
|
b.Property<string>("Street")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(50)
|
||||||
|
.HasColumnType("nvarchar(50)");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("InventoryUserId");
|
||||||
|
|
||||||
|
b.ToTable("Addresses");
|
||||||
|
|
||||||
|
b.HasData(
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 1,
|
||||||
|
Appartment = "B",
|
||||||
|
City = "Saint-Chrysostome",
|
||||||
|
CivicNumber = 1234,
|
||||||
|
Country = "Canada",
|
||||||
|
InventoryUserId = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
PostalCode = "H0H0H0",
|
||||||
|
Province = "QC",
|
||||||
|
Street = "Rue Pierre-Falardeau"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Models.InvoiceModel", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||||
|
|
||||||
|
b.Property<string>("EmailAddress")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("FirstName")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(30)
|
||||||
|
.HasColumnType("nvarchar(30)");
|
||||||
|
|
||||||
|
b.Property<string>("LastName")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(30)
|
||||||
|
.HasColumnType("nvarchar(30)");
|
||||||
|
|
||||||
|
b.Property<string>("LinkedAccountId")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<string>("PhoneNumber")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<DateTime>("PurchaseDate")
|
||||||
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b.Property<int>("ShippingAddressId")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<int>("Status")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("LinkedAccountId");
|
||||||
|
|
||||||
|
b.HasIndex("ShippingAddressId");
|
||||||
|
|
||||||
|
b.ToTable("Invoices");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Models.InvoiceModel+ProductInvoice", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||||
|
|
||||||
|
b.Property<int?>("InvoiceModelId")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<int>("ProductId")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<long>("Quantity")
|
||||||
|
.HasColumnType("bigint");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("InvoiceModelId");
|
||||||
|
|
||||||
|
b.HasIndex("ProductId");
|
||||||
|
|
||||||
|
b.ToTable("ProductInvoice");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Models.ProductModel", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||||
|
|
||||||
|
b.Property<string>("Category")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("Description")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<long>("Hits")
|
||||||
|
.HasColumnType("bigint");
|
||||||
|
|
||||||
|
b.Property<string>("ImageName")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("LastHit")
|
||||||
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("LastSale")
|
||||||
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b.Property<decimal>("Price")
|
||||||
|
.HasColumnType("decimal(18,2)");
|
||||||
|
|
||||||
|
b.Property<decimal>("PromoPrice")
|
||||||
|
.HasColumnType("decimal(18,2)");
|
||||||
|
|
||||||
|
b.Property<long>("Quantity")
|
||||||
|
.HasColumnType("bigint");
|
||||||
|
|
||||||
|
b.Property<long>("Sales")
|
||||||
|
.HasColumnType("bigint");
|
||||||
|
|
||||||
|
b.Property<int>("Status")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<string>("Title")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(255)
|
||||||
|
.HasColumnType("nvarchar(255)");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.ToTable("Products");
|
||||||
|
|
||||||
|
b.HasData(
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 1,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "Pour faire votre propre bonhomme de 1837, comme dans le bon vieux temps.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$ceintureflechee.jpg",
|
||||||
|
Price = 85.86m,
|
||||||
|
PromoPrice = 29.99m,
|
||||||
|
Quantity = 1L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 4,
|
||||||
|
Title = "Ceinture flèchée"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 2,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "Parce que ça sent la coupe!",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$pantouflesCH.jpg",
|
||||||
|
Price = 15.64m,
|
||||||
|
PromoPrice = 9.99m,
|
||||||
|
Quantity = 54L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "Pantoufles du Canadien en Phentex"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 3,
|
||||||
|
Category = "Homme",
|
||||||
|
Description = "On ne lui ferait pas mal, en tout cas!!",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$jeanlucmongrain.jpg",
|
||||||
|
Price = 1453.12m,
|
||||||
|
PromoPrice = 999.99m,
|
||||||
|
Quantity = 1L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 3,
|
||||||
|
Title = "Jean-Luc Mongrain"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 4,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "Tellement simple et comfortable.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$tshirt.jpg",
|
||||||
|
Price = 12.12m,
|
||||||
|
PromoPrice = 9.99m,
|
||||||
|
Quantity = 143L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "T-Shirt"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 5,
|
||||||
|
Category = "Vêtement d'extérieur",
|
||||||
|
Description = "Deux pour un!",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$mitaines.jpg",
|
||||||
|
Price = 8.18m,
|
||||||
|
PromoPrice = 6.99m,
|
||||||
|
Quantity = 1423L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "Mitaines"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 6,
|
||||||
|
Category = "Vêtement d'extérieur",
|
||||||
|
Description = "Deux pour un!",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$foulard.jpg",
|
||||||
|
Price = 10.56m,
|
||||||
|
PromoPrice = 8.99m,
|
||||||
|
Quantity = 14L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 4,
|
||||||
|
Title = "Foulard"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 7,
|
||||||
|
Category = "Sous-Vêtement",
|
||||||
|
Description = "Pour garder le p'tit bout au chaud.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$kokin.jpg",
|
||||||
|
Price = 15.45m,
|
||||||
|
PromoPrice = 12.99m,
|
||||||
|
Quantity = 144L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 4,
|
||||||
|
Title = "Jock-Strap en phentex"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 8,
|
||||||
|
Category = "Sous-Vêtement",
|
||||||
|
Description = "Pour garder l'absence de p'tit bout au chaud.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$kokinfemme.jpg",
|
||||||
|
Price = 15.45m,
|
||||||
|
PromoPrice = 12.99m,
|
||||||
|
Quantity = 224L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 4,
|
||||||
|
Title = "Jock-Strap féminin en phentex"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 9,
|
||||||
|
Category = "Alien",
|
||||||
|
Description = "En chiffon.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$bibi.jpg",
|
||||||
|
Price = 1045.45m,
|
||||||
|
PromoPrice = 1023.99m,
|
||||||
|
Quantity = 1L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 3,
|
||||||
|
Title = "Bibi"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 10,
|
||||||
|
Category = "Vêtement d'extérieur",
|
||||||
|
Description = "En chiffon.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$tuque.jpg",
|
||||||
|
Price = 15.45m,
|
||||||
|
PromoPrice = 12.99m,
|
||||||
|
Quantity = 1L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "Tuque en laine"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 11,
|
||||||
|
Category = "Vêtement d'extérieur",
|
||||||
|
Description = "Pour se faire taper dessus avec une poêle à frire tout en restant au chaud.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$bonhomme.jpg",
|
||||||
|
Price = 145.45m,
|
||||||
|
PromoPrice = 123.99m,
|
||||||
|
Quantity = 1L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 4,
|
||||||
|
Title = "Habit de Bonhomme Carnaval"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 12,
|
||||||
|
Category = "Autre",
|
||||||
|
Description = "Pour se pêter la fiole avec style.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$gauze.jpg",
|
||||||
|
Price = 145.45m,
|
||||||
|
PromoPrice = 123.99m,
|
||||||
|
Quantity = 0L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 1,
|
||||||
|
Title = "Gauze en phentex"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 13,
|
||||||
|
Category = "Homme",
|
||||||
|
Description = "En chiffon.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$jesus.jpg",
|
||||||
|
Price = 145.45m,
|
||||||
|
PromoPrice = 123.99m,
|
||||||
|
Quantity = 1L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 3,
|
||||||
|
Title = "Petit Jésus de plâtre"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 14,
|
||||||
|
Category = "Autre",
|
||||||
|
Description = "À écouter dans l'habit de Bonhomme Carnaval tant que possible.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$vhs.jpg",
|
||||||
|
Price = 3.45m,
|
||||||
|
PromoPrice = 1.99m,
|
||||||
|
Quantity = 164363L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 3,
|
||||||
|
Title = "VHS de la Guerre des Tuques"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 15,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "(N'est pas réellement pare-balle).",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$chandailquetaine.jpg",
|
||||||
|
Price = 1435.45m,
|
||||||
|
PromoPrice = 1223.99m,
|
||||||
|
Quantity = 18L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 3,
|
||||||
|
Title = "Gilet pare-balle en laine"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 16,
|
||||||
|
Category = "Autre",
|
||||||
|
Description = "Pour s'éffoirer le nez dedans.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$doudou.jpg",
|
||||||
|
Price = 14.45m,
|
||||||
|
PromoPrice = 13.99m,
|
||||||
|
Quantity = 14L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "Doudou"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 17,
|
||||||
|
Category = "Vêtements d'extérieur",
|
||||||
|
Description = "Pour avoir l'air thug en hiver.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$mitaines2.jpg",
|
||||||
|
Price = 9.45m,
|
||||||
|
PromoPrice = 8.99m,
|
||||||
|
Quantity = 16L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "Mitaines pas de doigts"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 18,
|
||||||
|
Category = "Vêtements d'extérieur",
|
||||||
|
Description = "Pour avoir plus l'air thug en hiver.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$longmitaines.jpg",
|
||||||
|
Price = 10.45m,
|
||||||
|
PromoPrice = 9.99m,
|
||||||
|
Quantity = 10L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 5,
|
||||||
|
Title = "Longues mitaines pas de doigts"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 19,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "Pour les journées bs",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$pantalon.jpg",
|
||||||
|
Price = 69.99m,
|
||||||
|
PromoPrice = 49.99m,
|
||||||
|
Quantity = 0L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 1,
|
||||||
|
Title = "Pantalons slacks"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 20,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "Pour commencer à apprendre rust et utiliser linux",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$thighs.jpg",
|
||||||
|
Price = 23.50m,
|
||||||
|
PromoPrice = 19.99m,
|
||||||
|
Quantity = 3L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 4,
|
||||||
|
Title = "Programmer Socks"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 21,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "Show off que t'habites su'l plateau",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$plateau.png",
|
||||||
|
Price = 149.99m,
|
||||||
|
PromoPrice = 99.99m,
|
||||||
|
Quantity = 14L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "Col-roulé"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 22,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "Ben oui je vais à l'UQAM comment t'as d'viné",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$uqam.jpg",
|
||||||
|
Price = 149.99m,
|
||||||
|
PromoPrice = 99.99m,
|
||||||
|
Quantity = 4L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 3,
|
||||||
|
Title = "Gros col-roulé"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 23,
|
||||||
|
Category = "Établissement",
|
||||||
|
Description = "Oui oui, une SAQ au complete",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$saq.jpg",
|
||||||
|
Price = 1000000.99m,
|
||||||
|
PromoPrice = 999999.99m,
|
||||||
|
Quantity = 1L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "SAQ"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 24,
|
||||||
|
Category = "Texte",
|
||||||
|
Description = "Lorem ipsum dolor sit amet, \r\nconsectetur adipiscing elit. Vivamus sapien ipsum, \r\nconvallis quis justo ac, congue sollicitudin metus. \r\nVestibulum nec libero nulla. Integer a pretium dolor. \r\nPhasellus vulputate iaculis ligula, sit amet suscipit \r\ndiam condimentum eu. Suspendisse blandit ipsum sed porttitor volutpat.\r\nDuis iaculis mauris a dapibus bibendum. Integer sollicitudin nunc et neque\r\negestas sagittis. Etiam vitae ornare ex.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$lorem.jpg",
|
||||||
|
Price = 0.99m,
|
||||||
|
PromoPrice = 0.69m,
|
||||||
|
Quantity = 99L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 4,
|
||||||
|
Title = "Lorem"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 25,
|
||||||
|
Category = "Homme",
|
||||||
|
Description = "Quand un vrai coûte trop cher",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$bebe.jpg",
|
||||||
|
Price = 10.99m,
|
||||||
|
PromoPrice = 5.99m,
|
||||||
|
Quantity = 15L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "Bébé de laine"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 26,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "Un beau petit kit pas cher quand vous avez oublié le cadeau pour le shower qui s'en vient",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$kitbebe.jpg",
|
||||||
|
Price = 39.99m,
|
||||||
|
PromoPrice = 29.99m,
|
||||||
|
Quantity = 10L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 3,
|
||||||
|
Title = "Kit pour bébé"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 27,
|
||||||
|
Category = "Linge",
|
||||||
|
Description = "Chris Pratt aime ben sauter dessus",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$koopa.jpg",
|
||||||
|
Price = 29.99m,
|
||||||
|
PromoPrice = 9.99m,
|
||||||
|
Quantity = 0L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 5,
|
||||||
|
Title = "TORTUE"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 28,
|
||||||
|
Category = "Nourriture",
|
||||||
|
Description = "*ne pa manger",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$potato.jpg",
|
||||||
|
Price = 1.99m,
|
||||||
|
PromoPrice = 0.99m,
|
||||||
|
Quantity = 58L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "Patate de laine"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 29,
|
||||||
|
Category = "Animal",
|
||||||
|
Description = "Les singes sont des mammifères de l'ordre des primates, généralement arboricoles, à la face souvent glabre et caractérisés par un encéphale développé et de longs membres terminés par des doigts. Bien que leur ressemblance avec l'Homme ait toujours frappé les esprits, la science a mis de nombreux siècles à prouver le lien étroit qui existe entre ceux-ci et l'espèce humaine.\r\n\r\nAu sein des primates, les singes forment un infra-ordre monophylétique, si l'on y inclut le genre Homo, nommé Simiiformes et qui se divise entre les Platyrhiniens (singes du Nouveau Monde : Amérique centrale et méridionale) et les Catarhiniens (singes de l'Ancien Monde : Afrique et Asie tropicales). Ces derniers comprennent les hominoïdes, également appelés « grands singes », dont fait partie Homo sapiens et ses ancêtres les plus proches.\r\n\r\nMême s'il ne fait plus de doute aujourd'hui que « l'Homme est un singe comme les autres », l'expression est majoritairement utilisée pour parler des animaux sauvages, et évoque un référentiel culturel, littéraire et artistique qui exclut l'espèce humaine.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$monke.png",
|
||||||
|
Price = 299.99m,
|
||||||
|
PromoPrice = 99.99m,
|
||||||
|
Quantity = 58L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 0,
|
||||||
|
Title = "Monke :)"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 30,
|
||||||
|
Category = "Pokemon",
|
||||||
|
Description = "It evolves from Pichu when leveled up with high friendship and evolves into Raichu when exposed to a Thunder Stone.\r\n\r\nIn Alola, Pikachu will evolve into Alolan Raichu when exposed to a Thunder Stone.\r\n\r\nPikachu has a Gigantamax form. Pikachu with the Gigantamax Factor cannot evolve.\r\n\r\nIn Pokémon Yellow, the starter Pikachu will refuse to evolve into Raichu unless it is traded and evolved on another save file. In Pokémon: Let's Go, Pikachu!, the player's starter Pikachu also will not evolve, but cannot be traded to become a Raichu.\r\n\r\nPikachu is popularly known as the mascot of the Pokémon franchise and one of Nintendo's major mascots.\r\n\r\nIt is also the game mascot and starter Pokémon of Pokémon Yellow and Let's Go, Pikachu!. It has made numerous appearances on the boxes of spin-off titles.\r\n\r\nPikachu is also the starter Pokémon of Pokémon Rumble Blast and Pokémon Rumble World.",
|
||||||
|
Hits = 0L,
|
||||||
|
ImageName = "$pika.png",
|
||||||
|
Price = 3.99m,
|
||||||
|
PromoPrice = 2.99m,
|
||||||
|
Quantity = 69L,
|
||||||
|
Sales = 0L,
|
||||||
|
Status = 5,
|
||||||
|
Title = "Phat Pikachu"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
|
||||||
|
{
|
||||||
|
b.Property<string>("Id")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<string>("ConcurrencyStamp")
|
||||||
|
.IsConcurrencyToken()
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("Name")
|
||||||
|
.HasMaxLength(256)
|
||||||
|
.HasColumnType("nvarchar(256)");
|
||||||
|
|
||||||
|
b.Property<string>("NormalizedName")
|
||||||
|
.HasMaxLength(256)
|
||||||
|
.HasColumnType("nvarchar(256)");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("NormalizedName")
|
||||||
|
.IsUnique()
|
||||||
|
.HasDatabaseName("RoleNameIndex")
|
||||||
|
.HasFilter("[NormalizedName] IS NOT NULL");
|
||||||
|
|
||||||
|
b.ToTable("AspNetRoles", (string)null);
|
||||||
|
|
||||||
|
b.HasData(
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = "c9e08b20-d8a5-473f-9f52-572eb23c12af",
|
||||||
|
ConcurrencyStamp = "0c71a591-3978-4682-b1d9-50f1940c0c18",
|
||||||
|
Name = "Administrateur",
|
||||||
|
NormalizedName = "ADMINISTRATEUR"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = "1b7b9c55-c746-493a-a24f-3d5ca937298e",
|
||||||
|
ConcurrencyStamp = "7ee11485-e950-4e5f-bcc3-93d087323121",
|
||||||
|
Name = "Client",
|
||||||
|
NormalizedName = "CLIENT"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||||
|
|
||||||
|
b.Property<string>("ClaimType")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("ClaimValue")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("RoleId")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("RoleId");
|
||||||
|
|
||||||
|
b.ToTable("AspNetRoleClaims", (string)null);
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||||
|
|
||||||
|
b.Property<string>("ClaimType")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("ClaimValue")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("UserId")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("UserId");
|
||||||
|
|
||||||
|
b.ToTable("AspNetUserClaims", (string)null);
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
|
||||||
|
{
|
||||||
|
b.Property<string>("LoginProvider")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<string>("ProviderKey")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<string>("ProviderDisplayName")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.Property<string>("UserId")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.HasKey("LoginProvider", "ProviderKey");
|
||||||
|
|
||||||
|
b.HasIndex("UserId");
|
||||||
|
|
||||||
|
b.ToTable("AspNetUserLogins", (string)null);
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
|
||||||
|
{
|
||||||
|
b.Property<string>("UserId")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<string>("RoleId")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.HasKey("UserId", "RoleId");
|
||||||
|
|
||||||
|
b.HasIndex("RoleId");
|
||||||
|
|
||||||
|
b.ToTable("AspNetUserRoles", (string)null);
|
||||||
|
|
||||||
|
b.HasData(
|
||||||
|
new
|
||||||
|
{
|
||||||
|
UserId = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
RoleId = "c9e08b20-d8a5-473f-9f52-572eb23c12af"
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
UserId = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
RoleId = "1b7b9c55-c746-493a-a24f-3d5ca937298e"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
|
||||||
|
{
|
||||||
|
b.Property<string>("UserId")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<string>("LoginProvider")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<string>("Name")
|
||||||
|
.HasColumnType("nvarchar(450)");
|
||||||
|
|
||||||
|
b.Property<string>("Value")
|
||||||
|
.HasColumnType("nvarchar(max)");
|
||||||
|
|
||||||
|
b.HasKey("UserId", "LoginProvider", "Name");
|
||||||
|
|
||||||
|
b.ToTable("AspNetUserTokens", (string)null);
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Models.AddressModel", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("GrossesMitainesAPI.Data.InventoryUser", null)
|
||||||
|
.WithMany("Adresses")
|
||||||
|
.HasForeignKey("InventoryUserId");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Models.InvoiceModel", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("GrossesMitainesAPI.Data.InventoryUser", "LinkedAccount")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("LinkedAccountId");
|
||||||
|
|
||||||
|
b.HasOne("GrossesMitainesAPI.Models.AddressModel", "ShippingAddress")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("ShippingAddressId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.Navigation("LinkedAccount");
|
||||||
|
|
||||||
|
b.Navigation("ShippingAddress");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Models.InvoiceModel+ProductInvoice", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("GrossesMitainesAPI.Models.InvoiceModel", null)
|
||||||
|
.WithMany("Products")
|
||||||
|
.HasForeignKey("InvoiceModelId");
|
||||||
|
|
||||||
|
b.HasOne("GrossesMitainesAPI.Models.ProductModel", "Product")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("ProductId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.Navigation("Product");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("RoleId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("GrossesMitainesAPI.Data.InventoryUser", null)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("UserId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("GrossesMitainesAPI.Data.InventoryUser", null)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("UserId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("RoleId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.HasOne("GrossesMitainesAPI.Data.InventoryUser", null)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("UserId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("GrossesMitainesAPI.Data.InventoryUser", null)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("UserId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Data.InventoryUser", b =>
|
||||||
|
{
|
||||||
|
b.Navigation("Adresses");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("GrossesMitainesAPI.Models.InvoiceModel", b =>
|
||||||
|
{
|
||||||
|
b.Navigation("Products");
|
||||||
|
});
|
||||||
|
#pragma warning restore 612, 618
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,67 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace GrossesMitainesAPI.Migrations
|
||||||
|
{
|
||||||
|
public partial class address : Migration
|
||||||
|
{
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.InsertData(
|
||||||
|
table: "Addresses",
|
||||||
|
columns: new[] { "Id", "Appartment", "City", "CivicNumber", "Country", "InventoryUserId", "PostalCode", "Province", "Street" },
|
||||||
|
values: new object[] { 1, "B", "Saint-Chrysostome", 1234, "Canada", "ecf7503a-591c-454e-a824-048e10bd0474", "H0H0H0", "QC", "Rue Pierre-Falardeau" });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetRoles",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "1b7b9c55-c746-493a-a24f-3d5ca937298e",
|
||||||
|
column: "ConcurrencyStamp",
|
||||||
|
value: "7ee11485-e950-4e5f-bcc3-93d087323121");
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetRoles",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "c9e08b20-d8a5-473f-9f52-572eb23c12af",
|
||||||
|
column: "ConcurrencyStamp",
|
||||||
|
value: "0c71a591-3978-4682-b1d9-50f1940c0c18");
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetUsers",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
columns: new[] { "ConcurrencyStamp", "PasswordHash", "SecurityStamp" },
|
||||||
|
values: new object[] { "037567cb-829a-4e64-aeff-77f9c18425b5", "AQAAAAEAACcQAAAAEE/NtmY1fEUixw6DTC/uv+7yv+2Na/85xzU7pJgB5Ll7UZUmcUZxuVLcgYkb9sKPOA==", "a39900db-f0c6-4a7c-9cee-d8f454dd2516" });
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "Addresses",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 1);
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetRoles",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "1b7b9c55-c746-493a-a24f-3d5ca937298e",
|
||||||
|
column: "ConcurrencyStamp",
|
||||||
|
value: "1c7a32ec-3bac-416a-9092-e8617bf63da4");
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetRoles",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "c9e08b20-d8a5-473f-9f52-572eb23c12af",
|
||||||
|
column: "ConcurrencyStamp",
|
||||||
|
value: "d78f5f64-28da-4a3e-b3e9-807d96ba6757");
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetUsers",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
columns: new[] { "ConcurrencyStamp", "PasswordHash", "SecurityStamp" },
|
||||||
|
values: new object[] { "381655f0-b7d5-49c2-b87a-a6e8b563c8b7", "AQAAAAEAACcQAAAAEBIJf5ELMYpuvPzwGaeS/3/QXeZZvHDGX4kA/mHpGQ0hJ8FYIFV986Y+30S75yupRg==", "6976eccd-d011-4d96-8ceb-0aefe9454da7" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
1164
GrossesMitaines/GrossesMitainesAPI/Migrations/20221108030828_invoices.Designer.cs
generated
Normal file
1164
GrossesMitaines/GrossesMitainesAPI/Migrations/20221108030828_invoices.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,192 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace GrossesMitainesAPI.Migrations
|
||||||
|
{
|
||||||
|
public partial class invoices : Migration
|
||||||
|
{
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetRoles",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "1b7b9c55-c746-493a-a24f-3d5ca937298e",
|
||||||
|
column: "ConcurrencyStamp",
|
||||||
|
value: "664e61a9-f77d-46ee-805c-98084e8b2fcb");
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetRoles",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "c9e08b20-d8a5-473f-9f52-572eb23c12af",
|
||||||
|
column: "ConcurrencyStamp",
|
||||||
|
value: "3b41186e-cc4b-49c0-b172-4c2b9be614d2");
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetUsers",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
columns: new[] { "ConcurrencyStamp", "PasswordHash", "SecurityStamp" },
|
||||||
|
values: new object[] { "55f4780c-49dd-44ea-b566-30d058c0005b", "AQAAAAEAACcQAAAAEK/n6j8ui+ZivXKUi2Lv6Jr7wXBJQdOdXawkvVDBlr4Rnxc7DxsuWwaaX5vN3YSjmQ==", "e3f2e569-fb52-49af-b9bc-10bf8df2b778" });
|
||||||
|
|
||||||
|
migrationBuilder.InsertData(
|
||||||
|
table: "Invoices",
|
||||||
|
columns: new[] { "Id", "EmailAddress", "FirstName", "LastName", "LinkedAccountId", "PhoneNumber", "PurchaseDate", "ShippingAddressId", "Status" },
|
||||||
|
values: new object[,]
|
||||||
|
{
|
||||||
|
{ 1, "admin@admin.com", "Roger", "Admin", "ecf7503a-591c-454e-a824-048e10bd0474", "111-111-1111", new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1206), 1, 0 },
|
||||||
|
{ 2, "admin@admin.com", "Roger", "Admin", "ecf7503a-591c-454e-a824-048e10bd0474", "111-111-1111", new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1244), 1, 1 },
|
||||||
|
{ 3, "admin@admin.com", "Roger", "Admin", "ecf7503a-591c-454e-a824-048e10bd0474", "111-111-1111", new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1247), 1, 3 },
|
||||||
|
{ 4, "admin@admin.com", "Roger", "Admin", "ecf7503a-591c-454e-a824-048e10bd0474", "111-111-1111", new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1249), 1, 4 },
|
||||||
|
{ 5, "admin@admin.com", "Roger", "Admin", "ecf7503a-591c-454e-a824-048e10bd0474", "111-111-1111", new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1251), 1, 5 }
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.InsertData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
columns: new[] { "Id", "InvoiceModelId", "ProductId", "Quantity" },
|
||||||
|
values: new object[,]
|
||||||
|
{
|
||||||
|
{ 1, 1, 1, 2L },
|
||||||
|
{ 2, 1, 4, 5L },
|
||||||
|
{ 3, 2, 3, 1L },
|
||||||
|
{ 4, 2, 5, 2L },
|
||||||
|
{ 5, 2, 7, 1L },
|
||||||
|
{ 6, 3, 9, 1L },
|
||||||
|
{ 7, 3, 11, 1L },
|
||||||
|
{ 8, 4, 14, 1L },
|
||||||
|
{ 9, 4, 13, 1L },
|
||||||
|
{ 10, 4, 16, 1L },
|
||||||
|
{ 11, 4, 24, 25L },
|
||||||
|
{ 12, 5, 25, 1L },
|
||||||
|
{ 13, 5, 29, 1L },
|
||||||
|
{ 14, 5, 30, 1L },
|
||||||
|
{ 15, 5, 15, 2L }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 1);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 2);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 3);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 4);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 5);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 6);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 7);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 8);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 9);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 10);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 11);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 12);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 13);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 14);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "ProductInvoice",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 15);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "Invoices",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 1);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "Invoices",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 2);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "Invoices",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 3);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "Invoices",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 4);
|
||||||
|
|
||||||
|
migrationBuilder.DeleteData(
|
||||||
|
table: "Invoices",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: 5);
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetRoles",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "1b7b9c55-c746-493a-a24f-3d5ca937298e",
|
||||||
|
column: "ConcurrencyStamp",
|
||||||
|
value: "7ee11485-e950-4e5f-bcc3-93d087323121");
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetRoles",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "c9e08b20-d8a5-473f-9f52-572eb23c12af",
|
||||||
|
column: "ConcurrencyStamp",
|
||||||
|
value: "0c71a591-3978-4682-b1d9-50f1940c0c18");
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "AspNetUsers",
|
||||||
|
keyColumn: "Id",
|
||||||
|
keyValue: "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
columns: new[] { "ConcurrencyStamp", "PasswordHash", "SecurityStamp" },
|
||||||
|
values: new object[] { "037567cb-829a-4e64-aeff-77f9c18425b5", "AQAAAAEAACcQAAAAEE/NtmY1fEUixw6DTC/uv+7yv+2Na/85xzU7pJgB5Ll7UZUmcUZxuVLcgYkb9sKPOA==", "a39900db-f0c6-4a7c-9cee-d8f454dd2516" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -101,7 +101,7 @@ namespace GrossesMitainesAPI.Migrations
|
|||||||
{
|
{
|
||||||
Id = "ecf7503a-591c-454e-a824-048e10bd0474",
|
Id = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
AccessFailedCount = 0,
|
AccessFailedCount = 0,
|
||||||
ConcurrencyStamp = "381655f0-b7d5-49c2-b87a-a6e8b563c8b7",
|
ConcurrencyStamp = "55f4780c-49dd-44ea-b566-30d058c0005b",
|
||||||
Email = "admin@admin.com",
|
Email = "admin@admin.com",
|
||||||
EmailConfirmed = false,
|
EmailConfirmed = false,
|
||||||
FirstName = "Roger",
|
FirstName = "Roger",
|
||||||
@ -109,9 +109,9 @@ namespace GrossesMitainesAPI.Migrations
|
|||||||
LockoutEnabled = false,
|
LockoutEnabled = false,
|
||||||
NormalizedEmail = "ADMIN@ADMIN.COM",
|
NormalizedEmail = "ADMIN@ADMIN.COM",
|
||||||
NormalizedUserName = "ADMIN",
|
NormalizedUserName = "ADMIN",
|
||||||
PasswordHash = "AQAAAAEAACcQAAAAEBIJf5ELMYpuvPzwGaeS/3/QXeZZvHDGX4kA/mHpGQ0hJ8FYIFV986Y+30S75yupRg==",
|
PasswordHash = "AQAAAAEAACcQAAAAEK/n6j8ui+ZivXKUi2Lv6Jr7wXBJQdOdXawkvVDBlr4Rnxc7DxsuWwaaX5vN3YSjmQ==",
|
||||||
PhoneNumberConfirmed = false,
|
PhoneNumberConfirmed = false,
|
||||||
SecurityStamp = "6976eccd-d011-4d96-8ceb-0aefe9454da7",
|
SecurityStamp = "e3f2e569-fb52-49af-b9bc-10bf8df2b778",
|
||||||
TwoFactorEnabled = false,
|
TwoFactorEnabled = false,
|
||||||
UserName = "Admin"
|
UserName = "Admin"
|
||||||
});
|
});
|
||||||
@ -163,6 +163,20 @@ namespace GrossesMitainesAPI.Migrations
|
|||||||
b.HasIndex("InventoryUserId");
|
b.HasIndex("InventoryUserId");
|
||||||
|
|
||||||
b.ToTable("Addresses");
|
b.ToTable("Addresses");
|
||||||
|
|
||||||
|
b.HasData(
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 1,
|
||||||
|
Appartment = "B",
|
||||||
|
City = "Saint-Chrysostome",
|
||||||
|
CivicNumber = 1234,
|
||||||
|
Country = "Canada",
|
||||||
|
InventoryUserId = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
PostalCode = "H0H0H0",
|
||||||
|
Province = "QC",
|
||||||
|
Street = "Rue Pierre-Falardeau"
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("GrossesMitainesAPI.Models.InvoiceModel", b =>
|
modelBuilder.Entity("GrossesMitainesAPI.Models.InvoiceModel", b =>
|
||||||
@ -210,6 +224,68 @@ namespace GrossesMitainesAPI.Migrations
|
|||||||
b.HasIndex("ShippingAddressId");
|
b.HasIndex("ShippingAddressId");
|
||||||
|
|
||||||
b.ToTable("Invoices");
|
b.ToTable("Invoices");
|
||||||
|
|
||||||
|
b.HasData(
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 1,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1206),
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = 0
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 2,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1244),
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = 1
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 3,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1247),
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = 3
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 4,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1249),
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = 4
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 5,
|
||||||
|
EmailAddress = "admin@admin.com",
|
||||||
|
FirstName = "Roger",
|
||||||
|
LastName = "Admin",
|
||||||
|
LinkedAccountId = "ecf7503a-591c-454e-a824-048e10bd0474",
|
||||||
|
PhoneNumber = "111-111-1111",
|
||||||
|
PurchaseDate = new DateTime(2022, 11, 7, 22, 8, 27, 792, DateTimeKind.Local).AddTicks(1251),
|
||||||
|
ShippingAddressId = 1,
|
||||||
|
Status = 5
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("GrossesMitainesAPI.Models.InvoiceModel+ProductInvoice", b =>
|
modelBuilder.Entity("GrossesMitainesAPI.Models.InvoiceModel+ProductInvoice", b =>
|
||||||
@ -236,6 +312,113 @@ namespace GrossesMitainesAPI.Migrations
|
|||||||
b.HasIndex("ProductId");
|
b.HasIndex("ProductId");
|
||||||
|
|
||||||
b.ToTable("ProductInvoice");
|
b.ToTable("ProductInvoice");
|
||||||
|
|
||||||
|
b.HasData(
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 1,
|
||||||
|
InvoiceModelId = 1,
|
||||||
|
ProductId = 1,
|
||||||
|
Quantity = 2L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 2,
|
||||||
|
InvoiceModelId = 1,
|
||||||
|
ProductId = 4,
|
||||||
|
Quantity = 5L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 3,
|
||||||
|
InvoiceModelId = 2,
|
||||||
|
ProductId = 3,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 4,
|
||||||
|
InvoiceModelId = 2,
|
||||||
|
ProductId = 5,
|
||||||
|
Quantity = 2L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 5,
|
||||||
|
InvoiceModelId = 2,
|
||||||
|
ProductId = 7,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 6,
|
||||||
|
InvoiceModelId = 3,
|
||||||
|
ProductId = 9,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 7,
|
||||||
|
InvoiceModelId = 3,
|
||||||
|
ProductId = 11,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 8,
|
||||||
|
InvoiceModelId = 4,
|
||||||
|
ProductId = 14,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 9,
|
||||||
|
InvoiceModelId = 4,
|
||||||
|
ProductId = 13,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 10,
|
||||||
|
InvoiceModelId = 4,
|
||||||
|
ProductId = 16,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 11,
|
||||||
|
InvoiceModelId = 4,
|
||||||
|
ProductId = 24,
|
||||||
|
Quantity = 25L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 12,
|
||||||
|
InvoiceModelId = 5,
|
||||||
|
ProductId = 25,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 13,
|
||||||
|
InvoiceModelId = 5,
|
||||||
|
ProductId = 29,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 14,
|
||||||
|
InvoiceModelId = 5,
|
||||||
|
ProductId = 30,
|
||||||
|
Quantity = 1L
|
||||||
|
},
|
||||||
|
new
|
||||||
|
{
|
||||||
|
Id = 15,
|
||||||
|
InvoiceModelId = 5,
|
||||||
|
ProductId = 15,
|
||||||
|
Quantity = 2L
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("GrossesMitainesAPI.Models.ProductModel", b =>
|
modelBuilder.Entity("GrossesMitainesAPI.Models.ProductModel", b =>
|
||||||
@ -743,14 +926,14 @@ namespace GrossesMitainesAPI.Migrations
|
|||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = "c9e08b20-d8a5-473f-9f52-572eb23c12af",
|
Id = "c9e08b20-d8a5-473f-9f52-572eb23c12af",
|
||||||
ConcurrencyStamp = "d78f5f64-28da-4a3e-b3e9-807d96ba6757",
|
ConcurrencyStamp = "3b41186e-cc4b-49c0-b172-4c2b9be614d2",
|
||||||
Name = "Administrateur",
|
Name = "Administrateur",
|
||||||
NormalizedName = "ADMINISTRATEUR"
|
NormalizedName = "ADMINISTRATEUR"
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = "1b7b9c55-c746-493a-a24f-3d5ca937298e",
|
Id = "1b7b9c55-c746-493a-a24f-3d5ca937298e",
|
||||||
ConcurrencyStamp = "1c7a32ec-3bac-416a-9092-e8617bf63da4",
|
ConcurrencyStamp = "664e61a9-f77d-46ee-805c-98084e8b2fcb",
|
||||||
Name = "Client",
|
Name = "Client",
|
||||||
NormalizedName = "CLIENT"
|
NormalizedName = "CLIENT"
|
||||||
});
|
});
|
||||||
|
@ -7,12 +7,13 @@ const MyInvoices = () => {
|
|||||||
const [invoices, setInvoices] = useState([]);
|
const [invoices, setInvoices] = useState([]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
fetch(`https://localhost:7292/api/Invoices`, {
|
fetch(`https://localhost:7292/api/Invoice`, {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
mode: 'cors',
|
mode: 'cors',
|
||||||
credentials: 'include'
|
credentials: 'include'
|
||||||
}).then(async (response) => {
|
}).then(async (response) => {
|
||||||
console.log(response);
|
var json = await response.json();
|
||||||
|
setInvoices(json);
|
||||||
});
|
});
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user