forked from ddrilling/AsbCloudServer
eugeniy_ivanov
62384b5673
-добавлена модель для запроса в Data Spin фонового сервиса -корректировка моделей (удаление пробелов и лишних библиотек) -добавление данных по умолчанию о подсистемах (через Entity Filler) - в методе Convert в SubsystemOperationTimeService сделана корректировка дат
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace AsbCloudDb.Model.DefaultData
|
|
{
|
|
internal static class DefaultContextData
|
|
{
|
|
public static void Fill(ModelBuilder modelBuilder)
|
|
{
|
|
var fillers = new IEntityFiller[]
|
|
{
|
|
// Order does meter
|
|
new EntityFillerUserRole(),
|
|
new EntityFillerRelationUserRoleUserRole(),
|
|
new EntityFillerPermission(),
|
|
new EntityFillerRelationUserRolePermission(),
|
|
new EntityFillerUser(),
|
|
new EntityFillerRelationUserUserRole(),
|
|
new EntityFillerCompany(),
|
|
new EntityFillerWellOperationCategory(),
|
|
new EntityFillerFileCategory(),
|
|
new EntityFillerWellSectionType(),
|
|
new EntityFillerWellType(),
|
|
new EntityFillerMeasureCategory(),
|
|
new EntityFillerCompanyType(),
|
|
new EntityFillerSubsystem(),
|
|
};
|
|
|
|
foreach (var filler in fillers)
|
|
filler.FillData(modelBuilder);
|
|
}
|
|
}
|
|
}
|