12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using Microsoft.AspNetCore.Identity;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Metadata.Builders;
- using MTWorkHR.Infrastructure.Entities;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Infrastructure.Configurations
- {
- public class RoleConfiguration : IEntityTypeConfiguration<ApplicationRole>
- {
- public void Configure(EntityTypeBuilder<ApplicationRole> builder)
- {
- builder.HasData(
- new ApplicationRole
- {
- Id = "AD5B3B92-2311-48F8-9DEC-F9FAEF1F211A",
- Name = "Admin",
- NormalizedName = "ADMIN",
- IsAdmin = true,
- IsDeleted = false,
-
- },
- new ApplicationRole
- {
- Id = "EM5B3B92-2311-48F8-9DEC-F9FAEF1F211E",
- Name = "Employee",
- NormalizedName = "EMPLOYEE",
- IsAdmin = false,
- IsDeleted = false,
- }
- ,
- new ApplicationRole
- {
- Id = "CO5B3B92-2311-48F8-9DEC-F9FAEF1F211R",
- Name = "Contractor",
- NormalizedName = "CONTRACTOR",
- IsAdmin = false,
- IsDeleted = false,
- }
- );
- }
- }
- }
|