| | | 1 | | using System; |
| | | 2 | | using System.Text.Json; |
| | | 3 | | using System.Linq; |
| | | 4 | | using System.Collections; |
| | | 5 | | using System.Collections.Generic; |
| | | 6 | | using System.Text; |
| | | 7 | | using Microsoft.EntityFrameworkCore; |
| | | 8 | | using Microsoft.EntityFrameworkCore.Metadata; |
| | | 9 | | using Microsoft.EntityFrameworkCore.Metadata.Builders; |
| | | 10 | | using WinSolutions.Sveta.Server.Data.DataModel.Entities; |
| | | 11 | | using WinSolutions.Sveta.Server.Data.DataModel.Kinds; |
| | | 12 | | using WinSolutions.Sveta.Server.Services.Interfaces; |
| | | 13 | | using System.Threading; |
| | | 14 | | using System.Threading.Tasks; |
| | | 15 | | using WinSolutions.Sveta.Common.Extensions; |
| | | 16 | | using Org.BouncyCastle.Math.EC.Rfc7748; |
| | | 17 | | using System.ComponentModel.DataAnnotations.Schema; |
| | | 18 | | using Microsoft.EntityFrameworkCore.ChangeTracking; |
| | | 19 | | |
| | | 20 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Contexts |
| | | 21 | | { |
| | | 22 | | public class SvetaDbContext : DbContext |
| | | 23 | | { |
| | 221 | 24 | | public SvetaDbContext(DbContextOptions<SvetaDbContext> options) : base(options) |
| | 221 | 25 | | { |
| | 221 | 26 | | } |
| | | 27 | | |
| | 0 | 28 | | public SvetaDbContext() |
| | 0 | 29 | | { |
| | 0 | 30 | | } |
| | | 31 | | protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) |
| | 221 | 32 | | { |
| | 221 | 33 | | optionsBuilder.EnableSensitiveDataLogging(); |
| | 221 | 34 | | } |
| | | 35 | | |
| | | 36 | | protected override void OnModelCreating(ModelBuilder modelBuilder) |
| | 1 | 37 | | { |
| | | 38 | | |
| | 1 | 39 | | modelBuilder.Entity<Movement>() |
| | 1 | 40 | | .HasOne(x => x.Parent); |
| | | 41 | | |
| | 1 | 42 | | modelBuilder.Entity<Movement>() |
| | 1 | 43 | | .HasOne(x => x.Children); |
| | | 44 | | |
| | 1 | 45 | | modelBuilder.Entity<GoodLabel>() |
| | 1 | 46 | | .HasIndex(x => new { x.Name }) |
| | 1 | 47 | | .IsUnique(); |
| | | 48 | | |
| | 1 | 49 | | modelBuilder.Entity<Configuration>() |
| | 1 | 50 | | .HasIndex(x => new { x.Section, x.Key }) |
| | 1 | 51 | | .IsUnique(); |
| | | 52 | | |
| | 1 | 53 | | modelBuilder.Entity<ControlAccess>() |
| | 1 | 54 | | .HasIndex(x => new { x.ActionId, x.Available, x.RoleId }) |
| | 1 | 55 | | .IsUnique(); |
| | | 56 | | |
| | 1 | 57 | | modelBuilder.Entity<DiscountColor>() |
| | 1 | 58 | | .HasIndex(x => new { x.DiscountLevel, x.LabelColor }) |
| | 1 | 59 | | .IsUnique(); |
| | | 60 | | |
| | 1 | 61 | | modelBuilder.Entity<PriceTrendDetail>() |
| | 1 | 62 | | .HasIndex(x => new { x.GoodId, x.PriceTrendId }) |
| | 1 | 63 | | .IsUnique(); |
| | | 64 | | |
| | 1 | 65 | | modelBuilder.Entity<DepartmentCategoryRatio>() |
| | 1 | 66 | | .HasIndex(x => new { x.DepartmentId, x.CategoryId }) |
| | 1 | 67 | | .IsUnique(); |
| | | 68 | | |
| | 1 | 69 | | modelBuilder.Entity<Contragent>() |
| | 1 | 70 | | .HasOne(x => x.CreatedByUser) |
| | 1 | 71 | | .WithMany() |
| | 1 | 72 | | .HasForeignKey(x => x.CreatedByUserId); |
| | | 73 | | |
| | 1 | 74 | | modelBuilder.Entity<Contragent>() |
| | 1 | 75 | | .HasOne(x => x.ModifiedByUser) |
| | 1 | 76 | | .WithMany() |
| | 1 | 77 | | .HasForeignKey(x => x.ModifiedByUserId); |
| | | 78 | | |
| | 1 | 79 | | modelBuilder.Entity<RecordsState>() |
| | 1 | 80 | | .HasOne(x => x.CreatedByUser) |
| | 1 | 81 | | .WithMany() |
| | 1 | 82 | | .HasForeignKey(x => x.CreatedByUserId); |
| | | 83 | | |
| | 1 | 84 | | modelBuilder.Entity<RecordsState>() |
| | 1 | 85 | | .HasOne(x => x.ModifiedByUser) |
| | 1 | 86 | | .WithMany() |
| | 1 | 87 | | .HasForeignKey(x => x.ModifiedByUserId); |
| | | 88 | | |
| | 1 | 89 | | modelBuilder.Entity<User>() |
| | 1 | 90 | | .HasOne(x => x.CreatedByUser) |
| | 1 | 91 | | .WithMany(); |
| | | 92 | | |
| | 1 | 93 | | modelBuilder.Entity<User>() |
| | 1 | 94 | | .HasOne(x => x.ModifiedByUser) |
| | 1 | 95 | | .WithMany(); |
| | | 96 | | |
| | | 97 | | |
| | 1 | 98 | | modelBuilder.Entity<Contragent>() |
| | 1 | 99 | | .HasMany(x => x.User) |
| | 1 | 100 | | .WithOne(x => x.Contragent); |
| | | 101 | | |
| | 1 | 102 | | modelBuilder.Entity<Currency>() |
| | 1 | 103 | | .HasIndex(x => x.CODE) |
| | 1 | 104 | | .IsUnique(); |
| | | 105 | | |
| | 1 | 106 | | modelBuilder.Entity<Currency>() |
| | 1 | 107 | | .HasIndex(x => x.STRCODE) |
| | 1 | 108 | | .IsUnique(); |
| | | 109 | | |
| | 1 | 110 | | modelBuilder.Entity<Currency>() |
| | 1 | 111 | | .HasIndex(x => x.NAME) |
| | 1 | 112 | | .IsUnique(); |
| | | 113 | | |
| | 1 | 114 | | modelBuilder.Entity<Contragent>() |
| | 1 | 115 | | .HasIndex(x => new { x.Inn, x.Kpp }) |
| | 1 | 116 | | .IsUnique(); |
| | | 117 | | |
| | 1 | 118 | | modelBuilder.Entity<Contragent>() |
| | 1 | 119 | | .HasMany(x => x.ContractsAsSeller) |
| | 1 | 120 | | .WithOne(x => x.Seller); |
| | | 121 | | |
| | 1 | 122 | | modelBuilder.Entity<Contragent>() |
| | 1 | 123 | | .HasMany(x => x.ContractsAsBuyer) |
| | 1 | 124 | | .WithOne(x => x.Buyer); |
| | | 125 | | |
| | 1 | 126 | | modelBuilder.Entity<Contragent>() |
| | 1 | 127 | | .HasMany(x => x.MovementsAsCustomer) |
| | 1 | 128 | | .WithOne(x => x.Customer); |
| | | 129 | | |
| | 1 | 130 | | modelBuilder.Entity<Contragent>() |
| | 1 | 131 | | .HasMany(x => x.MovementsAsSupplier) |
| | 1 | 132 | | .WithOne(x => x.Supplier); |
| | | 133 | | |
| | 1 | 134 | | modelBuilder.Entity<Department>() |
| | 1 | 135 | | .HasMany(x => x.MovementsAsReceiver) |
| | 1 | 136 | | .WithOne(x => x.Receiver); |
| | | 137 | | |
| | 1 | 138 | | modelBuilder.Entity<Department>() |
| | 1 | 139 | | .HasMany(x => x.MovementsAsSender) |
| | 1 | 140 | | .WithOne(x => x.Sender); |
| | | 141 | | |
| | 1 | 142 | | modelBuilder.Entity<BankAccount>() |
| | 1 | 143 | | .HasIndex(x => new { x.Bik, x.SettlementAccount }) |
| | 1 | 144 | | .IsUnique(); |
| | | 145 | | |
| | 1 | 146 | | modelBuilder.Entity<DepartmentGoodSetting>() |
| | 1 | 147 | | .HasIndex(x => new { x.GoodId, x.DepartmentId }) |
| | 1 | 148 | | .IsUnique(); |
| | | 149 | | |
| | 1 | 150 | | modelBuilder.Entity<Rest>() |
| | 1 | 151 | | .HasIndex(x => new { x.GoodId, x.DepartmentId }) |
| | 1 | 152 | | .IsUnique(); |
| | | 153 | | |
| | 1 | 154 | | modelBuilder.Entity<Country>() |
| | 1 | 155 | | .HasIndex(x => x.Name) |
| | 1 | 156 | | .IsUnique(); |
| | | 157 | | |
| | 1 | 158 | | modelBuilder.Entity<Brand>() |
| | 1 | 159 | | .HasIndex(x => x.Name) |
| | 1 | 160 | | .IsUnique(); |
| | | 161 | | |
| | 1 | 162 | | modelBuilder.Entity<Good>() |
| | 1 | 163 | | .HasIndex(x => x.Name); |
| | | 164 | | |
| | 1 | 165 | | modelBuilder.Entity<GoodBarcode>() |
| | 1 | 166 | | .HasKey(x => new {x.GoodId, x.BarCodeId}); |
| | | 167 | | |
| | 1 | 168 | | modelBuilder.Entity<GoodBarcode>() |
| | 1 | 169 | | .HasIndex(x => new {x.GoodId, x.IsPrimary}) |
| | 1 | 170 | | .IsUnique().HasFilter("\"IsPrimary\" is true"); |
| | | 171 | | |
| | 1 | 172 | | modelBuilder.Entity<GoodBarcode>() |
| | 1 | 173 | | .HasOne(pt => pt.BarCode) |
| | 1 | 174 | | .WithMany(p => p.Goods) |
| | 1 | 175 | | .HasForeignKey(pt => pt.BarCodeId); |
| | | 176 | | |
| | 1 | 177 | | modelBuilder.Entity<GoodBarcode>() |
| | 1 | 178 | | .HasOne(pt => pt.Good) |
| | 1 | 179 | | .WithMany(p => p.GoodBarcodes) |
| | 1 | 180 | | .HasForeignKey(pt => pt.GoodId); |
| | | 181 | | |
| | 1 | 182 | | modelBuilder.Entity<Category>() |
| | 1 | 183 | | .HasIndex(x => x.Name) |
| | 1 | 184 | | .IsUnique(); |
| | | 185 | | |
| | 1 | 186 | | modelBuilder.Entity<Category>() |
| | 1 | 187 | | .HasIndex(x => x.Code) |
| | 1 | 188 | | .IsUnique(); |
| | | 189 | | |
| | 1 | 190 | | modelBuilder.Entity<Cluster>() |
| | 1 | 191 | | .HasIndex(x => x.Name); |
| | | 192 | | |
| | 1 | 193 | | modelBuilder.Entity<Cluster>() |
| | 1 | 194 | | .HasOne(x => x.Warehouse) |
| | 1 | 195 | | .WithMany(); |
| | | 196 | | |
| | 1 | 197 | | modelBuilder.Entity<Cluster>() |
| | 1 | 198 | | .HasMany(x => x.Departments) |
| | 1 | 199 | | .WithOne(x => x.Cluster); |
| | | 200 | | |
| | 1 | 201 | | modelBuilder.Entity<User>() |
| | 1 | 202 | | .HasIndex(x => x.LastName); |
| | | 203 | | |
| | 1 | 204 | | modelBuilder.Entity<User>() |
| | 1 | 205 | | .HasIndex(x => x.Login); |
| | | 206 | | |
| | 1 | 207 | | modelBuilder.Entity<User>() |
| | 1 | 208 | | .HasIndex(x => x.Phone); |
| | | 209 | | |
| | 1 | 210 | | modelBuilder.Entity<User>() |
| | 1 | 211 | | .HasIndex(x => x.Email); |
| | | 212 | | |
| | 1 | 213 | | modelBuilder.Entity<Event>() |
| | 1 | 214 | | .HasIndex(x => x.Entity); |
| | | 215 | | |
| | 1 | 216 | | modelBuilder.Entity<Event>() |
| | 1 | 217 | | .HasIndex(x => x.ReasonJson); |
| | | 218 | | |
| | 1 | 219 | | modelBuilder.Entity<SupplyContract>() |
| | 1 | 220 | | .HasIndex(x => x.DocumentNumber); |
| | | 221 | | |
| | 1 | 222 | | modelBuilder.Entity<Department>() |
| | 1 | 223 | | .HasIndex(x => x.Name); |
| | | 224 | | |
| | 1 | 225 | | modelBuilder.Entity<Department>() |
| | 1 | 226 | | .HasIndex(x => x.PhoneNumber); |
| | | 227 | | |
| | 1 | 228 | | modelBuilder.Entity<UserDepartment>() |
| | 1 | 229 | | .HasKey(t => new { t.UserId, t.DepartmentId }); |
| | | 230 | | |
| | 1 | 231 | | modelBuilder.Entity<UserDepartment>() |
| | 1 | 232 | | .HasOne(pt => pt.User) |
| | 1 | 233 | | .WithMany(p => p.UsersDepartments) |
| | 1 | 234 | | .HasForeignKey(pt => pt.UserId); |
| | | 235 | | |
| | 1 | 236 | | modelBuilder.Entity<UserDepartment>() |
| | 1 | 237 | | .HasOne(pt => pt.Department) |
| | 1 | 238 | | .WithMany(t => t.UsersDepartments) |
| | 1 | 239 | | .HasForeignKey(pt => pt.DepartmentId); |
| | | 240 | | |
| | 1 | 241 | | modelBuilder.Entity<GoodSettingsLabel>() |
| | 1 | 242 | | .HasKey(t => new { t.GoodLabelId, t.GoodSettingId }); |
| | | 243 | | |
| | 1 | 244 | | modelBuilder.Entity<GoodSettingsLabel>() |
| | 1 | 245 | | .HasOne(pt => pt.GoodLabel) |
| | 1 | 246 | | .WithMany(p => p.GoodSettingsLabels) |
| | 1 | 247 | | .HasForeignKey(pt => pt.GoodLabelId); |
| | | 248 | | |
| | 1 | 249 | | modelBuilder.Entity<GoodSettingsLabel>() |
| | 1 | 250 | | .HasOne(pt => pt.GoodSetting) |
| | 1 | 251 | | .WithMany(t => t.GoodSettingsLabels) |
| | 1 | 252 | | .HasForeignKey(pt => pt.GoodSettingId); |
| | | 253 | | |
| | 1 | 254 | | modelBuilder.Entity<ClusterDeliveryType>() |
| | 1 | 255 | | .HasKey(t => new { t.DeliveryTypeId, t.ClusterId }); |
| | | 256 | | |
| | 1 | 257 | | modelBuilder.Entity<ClusterDeliveryType>() |
| | 1 | 258 | | .HasOne(pt => pt.Cluster) |
| | 1 | 259 | | .WithMany(p => p.ClusterDeliveryTypes) |
| | 1 | 260 | | .HasForeignKey(pt => pt.ClusterId); |
| | | 261 | | |
| | 1 | 262 | | modelBuilder.Entity<ClusterDeliveryType>() |
| | 1 | 263 | | .HasOne(pt => pt.DeliveryType) |
| | 1 | 264 | | .WithMany(t => t.ClusterDeliveryTypes) |
| | 1 | 265 | | .HasForeignKey(pt => pt.DeliveryTypeId); |
| | | 266 | | |
| | 1 | 267 | | modelBuilder.Entity<UserRole>() |
| | 1 | 268 | | .HasKey(t => new { t.UserId, t.RoleId }); |
| | | 269 | | |
| | 1 | 270 | | modelBuilder.Entity<UserRole>() |
| | 1 | 271 | | .HasOne(pt => pt.User) |
| | 1 | 272 | | .WithMany(p => p.UsersRoles) |
| | 1 | 273 | | .HasForeignKey(pt => pt.UserId); |
| | | 274 | | |
| | 1 | 275 | | modelBuilder.Entity<UserRole>() |
| | 1 | 276 | | .HasOne(pt => pt.Roles) |
| | 1 | 277 | | .WithMany(t => t.UsersRoles) |
| | 1 | 278 | | .HasForeignKey(pt => pt.RoleId); |
| | | 279 | | |
| | 1 | 280 | | modelBuilder.Entity<MethodRole>() |
| | 1 | 281 | | .HasKey(t => new { t.RoleId, t.MethodId }); |
| | | 282 | | |
| | 1 | 283 | | modelBuilder.Entity<MethodRole>() |
| | 1 | 284 | | .HasOne(pt => pt.Roles) |
| | 1 | 285 | | .WithMany(p => p.MethodsRoles) |
| | 1 | 286 | | .HasForeignKey(pt => pt.RoleId); |
| | | 287 | | |
| | 1 | 288 | | modelBuilder.Entity<MethodRole>() |
| | 1 | 289 | | .HasOne(pt => pt.Methods) |
| | 1 | 290 | | .WithMany(t => t.MethodsRoles) |
| | 1 | 291 | | .HasForeignKey(pt => pt.MethodId); |
| | | 292 | | |
| | 1 | 293 | | var dt = new DateTime(2020, 01, 01); |
| | 1 | 294 | | var guid = new Guid("00000000-0000-0000-0000-000000000000"); |
| | | 295 | | |
| | 1 | 296 | | modelBuilder.Entity<IncidentsKind>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 297 | | modelBuilder.Entity<IncidentsKind>().HasData(new IncidentsKind { Id = 1, Name = "Неизвестно", Code = "Unknow |
| | 1 | 298 | | modelBuilder.Entity<IncidentsKind>().HasData(new IncidentsKind { Id = 2, Name = "Ошибка", Code = "Error", De |
| | 1 | 299 | | modelBuilder.Entity<IncidentsKind>().HasData(new IncidentsKind { Id = 3, Name = "Вопрос", Code = "Question", |
| | 1 | 300 | | modelBuilder.Entity<IncidentsKind>().HasData(new IncidentsKind { Id = 4, Name = "Предложение", Code = "Sugge |
| | | 301 | | |
| | 1 | 302 | | modelBuilder.Entity<IncidentsStatus>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 303 | | modelBuilder.Entity<IncidentsStatus>().HasData(new IncidentsStatus { Id = 1, Name = "Открыт", Code = "Open", |
| | 1 | 304 | | modelBuilder.Entity<IncidentsStatus>().HasData(new IncidentsStatus { Id = 2, Name = "В работе", Code = "InWo |
| | 1 | 305 | | modelBuilder.Entity<IncidentsStatus>().HasData(new IncidentsStatus { Id = 3, Name = "Решен", Code = "Resolve |
| | 1 | 306 | | modelBuilder.Entity<IncidentsStatus>().HasData(new IncidentsStatus { Id = 4, Name = "Отменен", Code = "Cance |
| | 1 | 307 | | modelBuilder.Entity<IncidentsStatus>().HasData(new IncidentsStatus { Id = 5, Name = "Закрыт", Code = "Closed |
| | | 308 | | |
| | 1 | 309 | | modelBuilder.Entity<DepartmentsStatus>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 310 | | modelBuilder.Entity<DepartmentsStatus>().HasData(new DepartmentsStatus { Id = 1, Name = "Новый", Code = "New |
| | 1 | 311 | | modelBuilder.Entity<DepartmentsStatus>().HasData(new DepartmentsStatus { Id = 2, Name = "Активный", Code = " |
| | 1 | 312 | | modelBuilder.Entity<DepartmentsStatus>().HasData(new DepartmentsStatus { Id = 3, Name = "Неактивный", Code = |
| | 1 | 313 | | modelBuilder.Entity<DepartmentsStatus>().HasData(new DepartmentsStatus { Id = 4, Name = "На паузе", Code = " |
| | | 314 | | |
| | 1 | 315 | | modelBuilder.Entity<ContragentsKind>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 316 | | modelBuilder.Entity<ContragentsKind>().HasData(new ContragentsKind { Id = 1, Name = "Неизвестный", Code = "U |
| | 1 | 317 | | modelBuilder.Entity<ContragentsKind>().HasData(new ContragentsKind { Id = 2, Name = "Магазин", Code = "Retai |
| | 1 | 318 | | modelBuilder.Entity<ContragentsKind>().HasData(new ContragentsKind { Id = 3, Name = "Дистрибьютор", Code = " |
| | 1 | 319 | | modelBuilder.Entity<ContragentsKind>().HasData(new ContragentsKind { Id = 4, Name = "Производитель", Code = |
| | 1 | 320 | | modelBuilder.Entity<ContragentsKind>().HasData(new ContragentsKind { Id = 6, Name = "Платформа", Code = "Pla |
| | | 321 | | |
| | 1 | 322 | | modelBuilder.Entity<DepartmentsKind>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 323 | | modelBuilder.Entity<DepartmentsKind>().HasData(new DepartmentsKind { Id = 1, Name = "Склад", Code = "Warehou |
| | 1 | 324 | | modelBuilder.Entity<DepartmentsKind>().HasData(new DepartmentsKind { Id = 2, Name = "Магазин", Code = "Shop" |
| | 1 | 325 | | modelBuilder.Entity<DepartmentsKind>().HasData(new DepartmentsKind { Id = 3, Name = "Завод", Code = "Plant", |
| | 1 | 326 | | modelBuilder.Entity<DepartmentsKind>().HasData(new DepartmentsKind { Id = 4, Name = "Сервисная служба", Code |
| | | 327 | | |
| | 1 | 328 | | modelBuilder.Entity<EventsKind>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 329 | | modelBuilder.Entity<EventsKind>().HasData(new EventsKind { Id = 1, Name = "Неизвестно", Code = "Unknown", De |
| | 1 | 330 | | modelBuilder.Entity<EventsKind>().HasData(new EventsKind { Id = 2, Name = "Создание", Code = "Create", Descr |
| | 1 | 331 | | modelBuilder.Entity<EventsKind>().HasData(new EventsKind { Id = 3, Name = "Обновление", Code = "Update", Des |
| | 1 | 332 | | modelBuilder.Entity<EventsKind>().HasData(new EventsKind { Id = 4, Name = "Удаление", Code = "Delete", Descr |
| | | 333 | | |
| | 1 | 334 | | modelBuilder.Entity<NotificationsStatus>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 335 | | modelBuilder.Entity<NotificationsStatus>().HasData(new NotificationsStatus { Id = 1, Name = "Неизвестно", Co |
| | 1 | 336 | | modelBuilder.Entity<NotificationsStatus>().HasData(new NotificationsStatus { Id = 2, Name = "Создано", Code |
| | 1 | 337 | | modelBuilder.Entity<NotificationsStatus>().HasData(new NotificationsStatus { Id = 3, Name = "Отправлено", Co |
| | 1 | 338 | | modelBuilder.Entity<NotificationsStatus>().HasData(new NotificationsStatus { Id = 4, Name = "Прочитано", Cod |
| | 1 | 339 | | modelBuilder.Entity<NotificationsStatus>().HasData(new NotificationsStatus { Id = 5, Name = "Отключено", Cod |
| | | 340 | | |
| | 1 | 341 | | modelBuilder.Entity<NotificationsType>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 342 | | modelBuilder.Entity<NotificationsType>().HasData(new NotificationsType { Id = 1, Name = "Системное", Code = |
| | 1 | 343 | | modelBuilder.Entity<NotificationsType>().HasData(new NotificationsType { Id = 2, Name = "Новость", Code = "N |
| | | 344 | | |
| | 1 | 345 | | modelBuilder.Entity<MovementStatusOwner>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 346 | | modelBuilder.Entity<MovementStatusOwner>().HasData(new MovementStatusOwner {Id = 1, Name = "Customer", Creat |
| | 1 | 347 | | modelBuilder.Entity<MovementStatusOwner>().HasData(new MovementStatusOwner {Id = 2, Name = "Supplier", Creat |
| | 1 | 348 | | modelBuilder.Entity<MovementStatusOwner>().HasData(new MovementStatusOwner {Id = 3, Name = "Platform", Creat |
| | | 349 | | |
| | 1 | 350 | | modelBuilder.Entity<MovementType>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 351 | | modelBuilder.Entity<MovementType>().HasData(new MovementType { Id = 1, Name = "Заказ", Code = "Order", Descr |
| | 1 | 352 | | modelBuilder.Entity<MovementType>().HasData(new MovementType { Id = 2, Name = "Отгрузка", Code = "Shipment", |
| | 1 | 353 | | modelBuilder.Entity<MovementType>().HasData(new MovementType { Id = 3, Name = "Приход", Code = "Arrival", De |
| | 1 | 354 | | modelBuilder.Entity<MovementType>().HasData(new MovementType { Id = 4, Name = "Отказ", Code = "Deny", Descri |
| | | 355 | | |
| | 1 | 356 | | modelBuilder.Entity<MovementStatus>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 357 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus { Id = 1, Name = "Черновик", Code = "Draft" |
| | 1 | 358 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus { Id = 2, Name = "В очереди на обработку", |
| | 1 | 359 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus { Id = 3, Name = "В обработке", Code = "InP |
| | 1 | 360 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus { Id = 4, Name = "Отказ", Code = "Reject", |
| | 1 | 361 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus { Id = 5, Name = "Обработано", Code = "Fini |
| | 1 | 362 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus { Id = 6, Name = "Черновик", Code = "Draft" |
| | 1 | 363 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus { Id = 7, Name = "Отказ", Code = "Reject", |
| | 1 | 364 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 8, Name = "Ожидает оплаты", Code = "P |
| | 1 | 365 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 9, Name = "Сборка заказа", Code = "Pi |
| | 1 | 366 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 10, Name = "Готово к выдаче", Code = |
| | 1 | 367 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 11, Name = "Корректировка", Code = "C |
| | 1 | 368 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 12, Name = "Отказ поставщика", Code = |
| | 1 | 369 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 13, Name = "Выдано", Code = "Shipped" |
| | 1 | 370 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 14, Name = "Принято", Code = "Receive |
| | 1 | 371 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 15, Name = "Отказ покупателя", Code = |
| | 1 | 372 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 16, Name = "Претензия разбор", Code = |
| | 1 | 373 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 17, Name = "Претензия отказано", Code |
| | 1 | 374 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus {Id = 18, Name = "Претензия подтверждено", |
| | 1 | 375 | | modelBuilder.Entity<MovementStatus>().HasData(new MovementStatus { Id = 19, Name = "В пути", Code = "Transit |
| | | 376 | | |
| | 1 | 377 | | modelBuilder.Entity<RecordsState>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 378 | | modelBuilder.Entity<RecordsState>().HasData(new RecordsState { Id = 1, Name = "Ошибка", Code = "Error", Desc |
| | 1 | 379 | | modelBuilder.Entity<RecordsState>().HasData(new RecordsState { Id = 2, Name = "Активно", Code = "Active", De |
| | 1 | 380 | | modelBuilder.Entity<RecordsState>().HasData(new RecordsState { Id = 3, Name = "Неактивно", Code = "Inactive" |
| | 1 | 381 | | modelBuilder.Entity<RecordsState>().HasData(new RecordsState { Id = 4, Name = "Удалено", Code = "Deleted", D |
| | 1 | 382 | | modelBuilder.Entity<RecordsState>().HasData(new RecordsState { Id = 5, Name = "Пусто", Code = "Empty", Descr |
| | | 383 | | |
| | 1 | 384 | | modelBuilder.Entity<UnitsKind>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 385 | | modelBuilder.Entity<UnitsKind>().HasData(new UnitsKind { Id = 1, Name = "Неизвестно", Code = "1", StrCode = |
| | 1 | 386 | | modelBuilder.Entity<UnitsKind>().HasData(new UnitsKind { Id = 2, Name = "КГ", Code = "166", StrCode = "Kg", |
| | 1 | 387 | | modelBuilder.Entity<UnitsKind>().HasData(new UnitsKind { Id = 3, Name = "Л", Code = "112", StrCode = "Litre" |
| | 1 | 388 | | modelBuilder.Entity<UnitsKind>().HasData(new UnitsKind { Id = 4, Name = "М", Code = "6", StrCode = "Meter", |
| | 1 | 389 | | modelBuilder.Entity<UnitsKind>().HasData(new UnitsKind { Id = 5, Name = "ШТ", Code = "796", StrCode = "Item" |
| | 1 | 390 | | modelBuilder.Entity<UnitsKind>().HasData(new UnitsKind { Id = 6, Name = "М2", Code = "55", StrCode = "Square |
| | 1 | 391 | | modelBuilder.Entity<UnitsKind>().HasData(new UnitsKind { Id = 7, Name = "М3", Code = "113", StrCode = "Cubic |
| | | 392 | | |
| | 1 | 393 | | modelBuilder.Entity<VatsKind>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 394 | | modelBuilder.Entity<VatsKind>().HasData(new VatsKind { Id = 1, Name = "0%", Code = "1", Value = 1, StrCode = |
| | 1 | 395 | | modelBuilder.Entity<VatsKind>().HasData(new VatsKind { Id = 2, Name = "10%", Code = "10", Value = 10, StrCod |
| | 1 | 396 | | modelBuilder.Entity<VatsKind>().HasData(new VatsKind { Id = 3, Name = "20%", Code = "20", Value = 20, StrCod |
| | 1 | 397 | | modelBuilder.Entity<VatsKind>().HasData(new VatsKind { Id = 4, Name = "Без НДС", Code = "0", Value = 1, StrC |
| | | 398 | | |
| | 1 | 399 | | modelBuilder.Entity<Roles>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 400 | | modelBuilder.Entity<Roles>().HasData(new Roles { Id = 1, Name = Role.SystemAdmin, Description = "Администрат |
| | 1 | 401 | | modelBuilder.Entity<Roles>().HasData(new Roles { Id = 2, Name = Role.SystemOperator, Description = "Оператор |
| | 1 | 402 | | modelBuilder.Entity<Roles>().HasData(new Roles { Id = 3, Name = Role.ShopOwner, Description = "Владелец мага |
| | 1 | 403 | | modelBuilder.Entity<Roles>().HasData(new Roles { Id = 4, Name = Role.ShopMerchandiser, Description = "Товаро |
| | 1 | 404 | | modelBuilder.Entity<Roles>().HasData(new Roles { Id = 5, Name = Role.ShopSeller, Description = "Продавец маг |
| | 1 | 405 | | modelBuilder.Entity<Roles>().HasData(new Roles { Id = 6, Name = Role.SupplierOwner, Description = "Владелец |
| | 1 | 406 | | modelBuilder.Entity<Roles>().HasData(new Roles { Id = 7, Name = Role.SupplierOperator, Description = "Управл |
| | 1 | 407 | | modelBuilder.Entity<Roles>().HasData(new Roles { Id = 8, Name = Role.SupplierSpec, Description = "Кладовщик |
| | 1 | 408 | | modelBuilder.Entity<Roles>().HasData(new Roles { Id = 9, Name = Role.Anonym, Description = "Анонимный пользо |
| | | 409 | | |
| | 1 | 410 | | modelBuilder.Entity<WalletTransactionStatus>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 411 | | modelBuilder.Entity<WalletTransactionStatus>().HasData(new WalletTransactionStatus { Id = 1, Name = "Ожидани |
| | 1 | 412 | | modelBuilder.Entity<WalletTransactionStatus>().HasData(new WalletTransactionStatus { Id = 2, Name = "Холдиро |
| | 1 | 413 | | modelBuilder.Entity<WalletTransactionStatus>().HasData(new WalletTransactionStatus { Id = 3, Name = "Подтвер |
| | 1 | 414 | | modelBuilder.Entity<WalletTransactionStatus>().HasData(new WalletTransactionStatus { Id = 4, Name = "Отменен |
| | | 415 | | |
| | 1 | 416 | | modelBuilder.Entity<TaxSystem>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 417 | | modelBuilder.Entity<TaxSystem>().HasData(new TaxSystem { Id = 1, Code = "УСН", Name = "Упрощенная система на |
| | 1 | 418 | | modelBuilder.Entity<TaxSystem>().HasData(new TaxSystem { Id = 2, Code = "ЕНВД", Name = "Единый налог на вмен |
| | 2 | 419 | | modelBuilder.Entity<TaxSystem>().HasData(new TaxSystem { Id = 3, Code = "ES", Name = "ЕСХН", Description = " |
| | 1 | 420 | | modelBuilder.Entity<TaxSystem>().HasData(new TaxSystem { Id = 4, Code = "ОСН", Name = "Основная система нало |
| | | 421 | | |
| | 1 | 422 | | modelBuilder.Entity<Currency>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 423 | | modelBuilder.Entity<Currency>().HasData(new Currency { Id = 1, CODE = "643", COUNTRY = "Россия", global_id = |
| | | 424 | | |
| | 1 | 425 | | modelBuilder.Entity<Country>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 426 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 2, Name = "Абхазия", Code = 895, CreationDateTime |
| | 1 | 427 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 3, Name = "Австралия", Code = 36, CreationDateTime |
| | 1 | 428 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 4, Name = "Австрия", Code = 40, CreationDateTime = |
| | 1 | 429 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 5, Name = "Азербайджан", Code = 31, CreationDateTi |
| | 1 | 430 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 6, Name = "Албания", Code = 8, CreationDateTime = |
| | 1 | 431 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 7, Name = "Алжир", Code = 12, CreationDateTime = d |
| | 1 | 432 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 8, Name = "Американское Самоа", Code = 16, Creatio |
| | 1 | 433 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 9, Name = "Ангилья", Code = 660, CreationDateTime |
| | 1 | 434 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 10, Name = "Ангола", Code = 24, CreationDateTime = |
| | 1 | 435 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 11, Name = "Андорра", Code = 20, CreationDateTime |
| | 1 | 436 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 12, Name = "Антарктида", Code = 10, CreationDateTi |
| | 1 | 437 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 13, Name = "Антигуа и Барбуда", Code = 28, Creatio |
| | 1 | 438 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 14, Name = "Аргентина", Code = 32, CreationDateTim |
| | 1 | 439 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 15, Name = "Армения", Code = 51, CreationDateTime |
| | 1 | 440 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 16, Name = "Аруба", Code = 533, CreationDateTime = |
| | 1 | 441 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 17, Name = "Афганистан", Code = 4, CreationDateTim |
| | 1 | 442 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 18, Name = "Багамы", Code = 44, CreationDateTime = |
| | 1 | 443 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 19, Name = "Бангладеш", Code = 50, CreationDateTim |
| | 1 | 444 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 20, Name = "Барбадос", Code = 52, CreationDateTime |
| | 1 | 445 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 21, Name = "Бахрейн", Code = 48, CreationDateTime |
| | 1 | 446 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 22, Name = "Беларусь", Code = 112, CreationDateTim |
| | 1 | 447 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 23, Name = "Белиз", Code = 84, CreationDateTime = |
| | 1 | 448 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 24, Name = "Бельгия", Code = 56, CreationDateTime |
| | 1 | 449 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 25, Name = "Бенин", Code = 204, CreationDateTime = |
| | 1 | 450 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 26, Name = "Бермуды", Code = 60, CreationDateTime |
| | 1 | 451 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 27, Name = "Болгария", Code = 100, CreationDateTim |
| | 1 | 452 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 28, Name = "Боливия, Многонациональное Государство |
| | 1 | 453 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 29, Name = "Бонэйр, Синт-Эстатиус и Саба", Code = |
| | 1 | 454 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 30, Name = "Босния и Герцеговина", Code = 70, Crea |
| | 1 | 455 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 31, Name = "Ботсвана", Code = 72, CreationDateTime |
| | 1 | 456 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 32, Name = "Бразилия", Code = 76, CreationDateTime |
| | 1 | 457 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 33, Name = "Британская территория в Индийском океа |
| | 1 | 458 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 34, Name = "Бруней-Даруссалам", Code = 96, Creatio |
| | 1 | 459 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 35, Name = "Буркина-Фасо", Code = 854, CreationDat |
| | 1 | 460 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 36, Name = "Бурунди", Code = 108, CreationDateTime |
| | 1 | 461 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 37, Name = "Бутан", Code = 64, CreationDateTime = |
| | 1 | 462 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 38, Name = "Вануату", Code = 548, CreationDateTime |
| | 1 | 463 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 39, Name = "Венгрия", Code = 348, CreationDateTime |
| | 1 | 464 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 40, Name = "Венесуэла Боливарианская Республика", |
| | 1 | 465 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 41, Name = "Виргинские острова (Британские)", Code |
| | 1 | 466 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 42, Name = "Виргинские острова (США)", Code = 850, |
| | 1 | 467 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 43, Name = "Вьетнам", Code = 704, CreationDateTime |
| | 1 | 468 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 44, Name = "Габон", Code = 266, CreationDateTime = |
| | 1 | 469 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 45, Name = "Гаити", Code = 332, CreationDateTime = |
| | 1 | 470 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 46, Name = "Гайана", Code = 328, CreationDateTime |
| | 1 | 471 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 47, Name = "Гамбия", Code = 270, CreationDateTime |
| | 1 | 472 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 48, Name = "Гана", Code = 288, CreationDateTime = |
| | 1 | 473 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 49, Name = "Гваделупа", Code = 312, CreationDateTi |
| | 1 | 474 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 50, Name = "Гватемала", Code = 320, CreationDateTi |
| | 1 | 475 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 51, Name = "Гвинея", Code = 324, CreationDateTime |
| | 1 | 476 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 52, Name = "Гвинея-Бисау", Code = 624, CreationDat |
| | 1 | 477 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 53, Name = "Германия", Code = 276, CreationDateTim |
| | 1 | 478 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 54, Name = "Гернси", Code = 831, CreationDateTime |
| | 1 | 479 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 55, Name = "Гибралтар", Code = 292, CreationDateTi |
| | 1 | 480 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 56, Name = "Гондурас", Code = 340, CreationDateTim |
| | 1 | 481 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 57, Name = "Гонконг", Code = 344, CreationDateTime |
| | 1 | 482 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 58, Name = "Гренада", Code = 308, CreationDateTime |
| | 1 | 483 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 59, Name = "Гренландия", Code = 304, CreationDateT |
| | 1 | 484 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 60, Name = "Греция", Code = 300, CreationDateTime |
| | 1 | 485 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 61, Name = "Грузия", Code = 268, CreationDateTime |
| | 1 | 486 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 62, Name = "Гуам", Code = 316, CreationDateTime = |
| | 1 | 487 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 63, Name = "Дания", Code = 208, CreationDateTime = |
| | 1 | 488 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 64, Name = "Джерси", Code = 832, CreationDateTime |
| | 1 | 489 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 65, Name = "Джибути", Code = 262, CreationDateTime |
| | 1 | 490 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 66, Name = "Доминика", Code = 212, CreationDateTim |
| | 1 | 491 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 67, Name = "Доминиканская Республика", Code = 214, |
| | 1 | 492 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 68, Name = "Египет", Code = 818, CreationDateTime |
| | 1 | 493 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 69, Name = "Замбия", Code = 894, CreationDateTime |
| | 1 | 494 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 70, Name = "Западная Сахара", Code = 732, Creation |
| | 1 | 495 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 71, Name = "Зимбабве", Code = 716, CreationDateTim |
| | 1 | 496 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 72, Name = "Израиль", Code = 376, CreationDateTime |
| | 1 | 497 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 73, Name = "Индия", Code = 356, CreationDateTime = |
| | 1 | 498 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 74, Name = "Индонезия", Code = 360, CreationDateTi |
| | 1 | 499 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 75, Name = "Иордания", Code = 400, CreationDateTim |
| | 1 | 500 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 76, Name = "Ирак", Code = 368, CreationDateTime = |
| | 1 | 501 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 77, Name = "Иран (Исламская Республика)", Code = 3 |
| | 1 | 502 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 78, Name = "Ирландия", Code = 372, CreationDateTim |
| | 1 | 503 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 79, Name = "Исландия", Code = 352, CreationDateTim |
| | 1 | 504 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 80, Name = "Испания", Code = 724, CreationDateTime |
| | 1 | 505 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 81, Name = "Италия", Code = 380, CreationDateTime |
| | 1 | 506 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 82, Name = "Йемен", Code = 887, CreationDateTime = |
| | 1 | 507 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 83, Name = "Кабо-Верде", Code = 132, CreationDateT |
| | 1 | 508 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 84, Name = "Казахстан", Code = 398, CreationDateTi |
| | 1 | 509 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 85, Name = "Камбоджа", Code = 116, CreationDateTim |
| | 1 | 510 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 86, Name = "Камерун", Code = 120, CreationDateTime |
| | 1 | 511 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 87, Name = "Канада", Code = 124, CreationDateTime |
| | 1 | 512 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 88, Name = "Катар", Code = 634, CreationDateTime = |
| | 1 | 513 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 89, Name = "Кения", Code = 404, CreationDateTime = |
| | 1 | 514 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 90, Name = "Кипр", Code = 196, CreationDateTime = |
| | 1 | 515 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 91, Name = "Киргизия", Code = 417, CreationDateTim |
| | 1 | 516 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 92, Name = "Кирибати", Code = 296, CreationDateTim |
| | 1 | 517 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 93, Name = "Китай", Code = 156, CreationDateTime = |
| | 1 | 518 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 94, Name = "Кокосовые (Килинг) острова", Code = 16 |
| | 1 | 519 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 95, Name = "Колумбия", Code = 170, CreationDateTim |
| | 1 | 520 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 96, Name = "Коморы", Code = 174, CreationDateTime |
| | 1 | 521 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 97, Name = "Конго", Code = 178, CreationDateTime = |
| | 1 | 522 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 98, Name = "Конго, Демократическая Республика", Co |
| | 1 | 523 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 99, Name = "Корея, Народно-Демократическая Республ |
| | 1 | 524 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 100, Name = "Корея, Республика", Code = 410, Creat |
| | 1 | 525 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 101, Name = "Коста-Рика", Code = 188, CreationDate |
| | 1 | 526 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 102, Name = "Кот д'Ивуар", Code = 384, CreationDat |
| | 1 | 527 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 103, Name = "Куба", Code = 192, CreationDateTime = |
| | 1 | 528 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 104, Name = "Кувейт", Code = 414, CreationDateTime |
| | 1 | 529 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 105, Name = "Кюрасао", Code = 531, CreationDateTim |
| | 1 | 530 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 106, Name = "Лаос", Code = 418, CreationDateTime = |
| | 1 | 531 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 107, Name = "Латвия", Code = 428, CreationDateTime |
| | 1 | 532 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 108, Name = "Лесото", Code = 426, CreationDateTime |
| | 1 | 533 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 109, Name = "Ливан", Code = 422, CreationDateTime |
| | 1 | 534 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 110, Name = "Ливия", Code = 434, CreationDateTime |
| | 1 | 535 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 111, Name = "Либерия", Code = 430, CreationDateTim |
| | 1 | 536 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 112, Name = "Лихтенштейн", Code = 438, CreationDat |
| | 1 | 537 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 113, Name = "Литва", Code = 440, CreationDateTime |
| | 1 | 538 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 114, Name = "Люксембург", Code = 442, CreationDate |
| | 1 | 539 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 115, Name = "Маврикий", Code = 480, CreationDateTi |
| | 1 | 540 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 116, Name = "Мавритания", Code = 478, CreationDate |
| | 1 | 541 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 117, Name = "Мадагаскар", Code = 450, CreationDate |
| | 1 | 542 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 118, Name = "Майотта", Code = 175, CreationDateTim |
| | 1 | 543 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 119, Name = "Макао", Code = 446, CreationDateTime |
| | 1 | 544 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 120, Name = "Малави", Code = 454, CreationDateTime |
| | 1 | 545 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 121, Name = "Малайзия", Code = 458, CreationDateTi |
| | 1 | 546 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 122, Name = "Мали", Code = 466, CreationDateTime = |
| | 1 | 547 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 123, Name = "Малые Тихоокеанские отдаленные остров |
| | 1 | 548 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 124, Name = "Мальдивы", Code = 462, CreationDateTi |
| | 1 | 549 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 125, Name = "Мальта", Code = 470, CreationDateTime |
| | 1 | 550 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 126, Name = "Марокко", Code = 504, CreationDateTim |
| | 1 | 551 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 127, Name = "Мартиника", Code = 474, CreationDateT |
| | 1 | 552 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 128, Name = "Маршалловы острова", Code = 584, Crea |
| | 1 | 553 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 129, Name = "Мексика", Code = 484, CreationDateTim |
| | 1 | 554 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 130, Name = "Микронезия, Федеративные Штаты", Code |
| | 1 | 555 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 131, Name = "Мозамбик", Code = 508, CreationDateTi |
| | 1 | 556 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 132, Name = "Молдова, Республика", Code = 498, Cre |
| | 1 | 557 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 133, Name = "Монако", Code = 492, CreationDateTime |
| | 1 | 558 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 134, Name = "Монголия", Code = 496, CreationDateTi |
| | 1 | 559 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 135, Name = "Монтсеррат", Code = 500, CreationDate |
| | 1 | 560 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 136, Name = "Мьянма", Code = 104, CreationDateTime |
| | 1 | 561 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 137, Name = "Намибия", Code = 516, CreationDateTim |
| | 1 | 562 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 138, Name = "Науру", Code = 520, CreationDateTime |
| | 1 | 563 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 139, Name = "Непал", Code = 524, CreationDateTime |
| | 1 | 564 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 140, Name = "Нигер", Code = 562, CreationDateTime |
| | 1 | 565 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 141, Name = "Нигерия", Code = 566, CreationDateTim |
| | 1 | 566 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 142, Name = "Нидерланды", Code = 528, CreationDate |
| | 1 | 567 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 143, Name = "Никарагуа", Code = 558, CreationDateT |
| | 1 | 568 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 144, Name = "Ниуэ", Code = 570, CreationDateTime = |
| | 1 | 569 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 145, Name = "Новая Зеландия", Code = 554, Creation |
| | 1 | 570 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 146, Name = "Новая Каледония", Code = 540, Creatio |
| | 1 | 571 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 147, Name = "Норвегия", Code = 578, CreationDateTi |
| | 1 | 572 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 148, Name = "Объединенные Арабские Эмираты", Code |
| | 1 | 573 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 149, Name = "Оман", Code = 512, CreationDateTime = |
| | 1 | 574 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 150, Name = "Остров Буве", Code = 74, CreationDate |
| | 1 | 575 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 151, Name = "Остров Мэн", Code = 833, CreationDate |
| | 1 | 576 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 152, Name = "Остров Норфолк", Code = 574, Creation |
| | 1 | 577 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 153, Name = "Остров Рождества", Code = 162, Creati |
| | 1 | 578 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 154, Name = "Остров Херд и острова Макдональд", Co |
| | 1 | 579 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 155, Name = "Острова Кайман", Code = 136, Creation |
| | 1 | 580 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 156, Name = "Острова Кука", Code = 184, CreationDa |
| | 1 | 581 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 157, Name = "Острова Теркс и Кайкос", Code = 796, |
| | 1 | 582 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 158, Name = "Пакистан", Code = 586, CreationDateTi |
| | 1 | 583 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 159, Name = "Палау", Code = 585, CreationDateTime |
| | 1 | 584 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 160, Name = "Палестина, Государство", Code = 275, |
| | 1 | 585 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 161, Name = "Панама", Code = 591, CreationDateTime |
| | 1 | 586 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 162, Name = "Папский Престол (Государство-город Ва |
| | 1 | 587 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 163, Name = "Папуа-Новая Гвинея", Code = 598, Crea |
| | 1 | 588 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 164, Name = "Парагвай", Code = 600, CreationDateTi |
| | 1 | 589 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 165, Name = "Перу", Code = 604, CreationDateTime = |
| | 1 | 590 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 166, Name = "Питкерн", Code = 612, CreationDateTim |
| | 1 | 591 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 167, Name = "Польша", Code = 616, CreationDateTime |
| | 1 | 592 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 168, Name = "Португалия", Code = 620, CreationDate |
| | 1 | 593 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 169, Name = "Пуэрто-Рико", Code = 630, CreationDat |
| | 1 | 594 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 170, Name = "Северная Македония", Code = 807, Crea |
| | 1 | 595 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 171, Name = "Реюньон", Code = 638, CreationDateTim |
| | 1 | 596 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 172, Name = "Россия", Code = 643, CreationDateTime |
| | 1 | 597 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 173, Name = "Руанда", Code = 646, CreationDateTime |
| | 1 | 598 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 174, Name = "Румыния", Code = 642, CreationDateTim |
| | 1 | 599 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 175, Name = "Самоа", Code = 882, CreationDateTime |
| | 1 | 600 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 176, Name = "Сан-Марино", Code = 674, CreationDate |
| | 1 | 601 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 177, Name = "Сан-Томе и Принсипи", Code = 678, Cre |
| | 1 | 602 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 178, Name = "Саудовская Аравия", Code = 682, Creat |
| | 1 | 603 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 179, Name = "Эсватини", Code = 748, CreationDateTi |
| | 1 | 604 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 180, Name = "Святая Елена, Остров вознесения, Трис |
| | 1 | 605 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 181, Name = "Северные Марианские острова", Code = |
| | 1 | 606 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 182, Name = "Сен-Бартелеми", Code = 652, CreationD |
| | 1 | 607 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 183, Name = "Сен-Мартен (французская часть)", Code |
| | 1 | 608 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 184, Name = "Сенегал", Code = 686, CreationDateTim |
| | 1 | 609 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 185, Name = "Сент-Винсент и Гренадины", Code = 670 |
| | 1 | 610 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 186, Name = "Сент-Китс и Невис", Code = 659, Creat |
| | 1 | 611 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 187, Name = "Сент-Люсия", Code = 662, CreationDate |
| | 1 | 612 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 188, Name = "Сен-Пьер и Микелон", Code = 666, Crea |
| | 1 | 613 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 189, Name = "Сербия", Code = 688, CreationDateTime |
| | 1 | 614 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 190, Name = "Сейшелы", Code = 690, CreationDateTim |
| | 1 | 615 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 191, Name = "Сингапур", Code = 702, CreationDateTi |
| | 1 | 616 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 192, Name = "Сен-Мартен (нидерландская часть)", Co |
| | 1 | 617 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 193, Name = "Сирийская Арабская Республика", Code |
| | 1 | 618 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 194, Name = "Словакия", Code = 703, CreationDateTi |
| | 1 | 619 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 195, Name = "Словения", Code = 705, CreationDateTi |
| | 1 | 620 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 196, Name = "Соединенное Королевство", Code = 826, |
| | 1 | 621 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 197, Name = "Соединенные Штаты", Code = 840, Creat |
| | 1 | 622 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 198, Name = "Соломоновы острова", Code = 90, Creat |
| | 1 | 623 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 199, Name = "Сомали", Code = 706, CreationDateTime |
| | 1 | 624 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 200, Name = "Судан", Code = 729, CreationDateTime |
| | 1 | 625 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 201, Name = "Суринам", Code = 740, CreationDateTim |
| | 1 | 626 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 202, Name = "Сьерра-Леоне", Code = 694, CreationDa |
| | 1 | 627 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 203, Name = "Таджикистан", Code = 762, CreationDat |
| | 1 | 628 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 204, Name = "Таиланд", Code = 764, CreationDateTim |
| | 1 | 629 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 205, Name = "Тайвань (Китай)", Code = 158, Creatio |
| | 1 | 630 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 206, Name = "Танзания, Объединенная Республика", C |
| | 1 | 631 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 207, Name = "Тимор-Лесте", Code = 626, CreationDat |
| | 1 | 632 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 208, Name = "Того", Code = 768, CreationDateTime = |
| | 1 | 633 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 209, Name = "Токелау", Code = 772, CreationDateTim |
| | 1 | 634 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 210, Name = "Тонга", Code = 776, CreationDateTime |
| | 1 | 635 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 211, Name = "Тринидад и Тобаго", Code = 780, Creat |
| | 1 | 636 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 212, Name = "Тувалу", Code = 798, CreationDateTime |
| | 1 | 637 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 213, Name = "Тунис", Code = 788, CreationDateTime |
| | 1 | 638 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 214, Name = "Туркменистан", Code = 795, CreationDa |
| | 1 | 639 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 215, Name = "Турция", Code = 792, CreationDateTime |
| | 1 | 640 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 216, Name = "Уганда", Code = 800, CreationDateTime |
| | 1 | 641 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 217, Name = "Узбекистан", Code = 860, CreationDate |
| | 1 | 642 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 218, Name = "Украина", Code = 804, CreationDateTim |
| | 1 | 643 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 219, Name = "Уоллис и Футуна", Code = 876, Creatio |
| | 1 | 644 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 220, Name = "Уругвай", Code = 858, CreationDateTim |
| | 1 | 645 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 221, Name = "Фарерские острова", Code = 234, Creat |
| | 1 | 646 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 222, Name = "Фиджи", Code = 242, CreationDateTime |
| | 1 | 647 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 223, Name = "Филиппины", Code = 608, CreationDateT |
| | 1 | 648 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 224, Name = "Финляндия", Code = 246, CreationDateT |
| | 1 | 649 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 225, Name = "Фолклендские острова (Мальвинские)", |
| | 1 | 650 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 226, Name = "Франция", Code = 250, CreationDateTim |
| | 1 | 651 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 227, Name = "Французская Гвиана", Code = 254, Crea |
| | 1 | 652 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 228, Name = "Французская Полинезия", Code = 258, C |
| | 1 | 653 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 229, Name = "Французские Южные территории", Code = |
| | 1 | 654 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 230, Name = "Хорватия", Code = 191, CreationDateTi |
| | 1 | 655 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 231, Name = "Центрально-Африканская Республика", C |
| | 1 | 656 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 232, Name = "Чад", Code = 148, CreationDateTime = |
| | 1 | 657 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 233, Name = "Черногория", Code = 499, CreationDate |
| | 1 | 658 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 234, Name = "Чешская Республика", Code = 203, Crea |
| | 1 | 659 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 235, Name = "Чили", Code = 152, CreationDateTime = |
| | 1 | 660 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 236, Name = "Швейцария", Code = 756, CreationDateT |
| | 1 | 661 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 237, Name = "Швеция", Code = 752, CreationDateTime |
| | 1 | 662 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 238, Name = "Шпицберген и Ян Майен", Code = 744, C |
| | 1 | 663 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 239, Name = "Шри-Ланка", Code = 144, CreationDateT |
| | 1 | 664 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 240, Name = "Эквадор", Code = 218, CreationDateTim |
| | 1 | 665 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 241, Name = "Экваториальная Гвинея", Code = 226, C |
| | 1 | 666 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 242, Name = "Эландские острова", Code = 248, Creat |
| | 1 | 667 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 243, Name = "Эль-Сальвадор", Code = 222, CreationD |
| | 1 | 668 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 244, Name = "Эритрея", Code = 232, CreationDateTim |
| | 1 | 669 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 245, Name = "Эстония", Code = 233, CreationDateTim |
| | 1 | 670 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 246, Name = "Эфиопия", Code = 231, CreationDateTim |
| | 1 | 671 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 247, Name = "Южная Африка", Code = 710, CreationDa |
| | 1 | 672 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 248, Name = "Южная Джорджия и Южные Сандвичевы ост |
| | 1 | 673 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 249, Name = "Южная Осетия", Code = 896, CreationDa |
| | 1 | 674 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 250, Name = "Южный Судан", Code = 728, CreationDat |
| | 1 | 675 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 251, Name = "Ямайка", Code = 388, CreationDateTime |
| | 1 | 676 | | modelBuilder.Entity<Country>().HasData(new Country { Id = 252, Name = "Япония", Code = 392, CreationDateTime |
| | | 677 | | |
| | 1 | 678 | | modelBuilder.Entity<MovementStatusRoute>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 679 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =1, StatusCurrentId = 1, Sta |
| | 1 | 680 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =2, StatusCurrentId = 2, Sta |
| | 1 | 681 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =3, StatusCurrentId = 2, Sta |
| | 1 | 682 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =4, StatusCurrentId = 2, Sta |
| | 1 | 683 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =5, StatusCurrentId = 3, Sta |
| | 1 | 684 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =6, StatusCurrentId = 3, Sta |
| | 1 | 685 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =7, StatusCurrentId = 3, Sta |
| | 1 | 686 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =8, StatusCurrentId = 6, Sta |
| | 1 | 687 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =9, StatusCurrentId = 6, Sta |
| | 1 | 688 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =10, StatusCurrentId = 8, St |
| | 1 | 689 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =11, StatusCurrentId = 8, St |
| | 1 | 690 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =12, StatusCurrentId = 8, St |
| | 1 | 691 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =13, StatusCurrentId = 9, St |
| | 1 | 692 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =14, StatusCurrentId = 9, St |
| | 1 | 693 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =15, StatusCurrentId = 9, St |
| | 1 | 694 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =30, StatusCurrentId = 9, St |
| | 1 | 695 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =16, StatusCurrentId = 10, S |
| | 1 | 696 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =17, StatusCurrentId = 10, S |
| | 1 | 697 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =18, StatusCurrentId = 10, S |
| | 1 | 698 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =19, StatusCurrentId = 10, S |
| | 1 | 699 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =31, StatusCurrentId = 10, S |
| | 1 | 700 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =20, StatusCurrentId = 11, S |
| | 1 | 701 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =21, StatusCurrentId = 11, S |
| | 1 | 702 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =22, StatusCurrentId = 11, S |
| | 1 | 703 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =32, StatusCurrentId = 11, S |
| | 1 | 704 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =23, StatusCurrentId = 13, S |
| | 1 | 705 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =24, StatusCurrentId = 13, S |
| | 1 | 706 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =25, StatusCurrentId = 13, S |
| | 1 | 707 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =26, StatusCurrentId = 15, S |
| | 1 | 708 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =27, StatusCurrentId = 16, S |
| | 1 | 709 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =28, StatusCurrentId = 16, S |
| | 1 | 710 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id =29, StatusCurrentId = 16, S |
| | 1 | 711 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 33, StatusCurrentId = 10, |
| | 1 | 712 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 34, StatusCurrentId = 19, |
| | 1 | 713 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 35, StatusCurrentId = 19, |
| | 1 | 714 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 36, StatusCurrentId = 19, |
| | 1 | 715 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 37, StatusCurrentId = 8, S |
| | 1 | 716 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 38, StatusCurrentId = 10, |
| | 1 | 717 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 39, StatusCurrentId = 19, |
| | 1 | 718 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 40, StatusCurrentId = 13, |
| | 1 | 719 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 41, StatusCurrentId = 16, |
| | 1 | 720 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 42, StatusCurrentId = 8, S |
| | 1 | 721 | | modelBuilder.Entity<MovementStatusRoute>().HasData(new MovementStatusRoute { Id = 43, StatusCurrentId = 5, S |
| | | 722 | | |
| | 1 | 723 | | modelBuilder.Entity<MovementRouteAction>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 724 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 1, OwnerActionId = 1, Actio |
| | 1 | 725 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 2, OwnerActionId = 1, Actio |
| | 1 | 726 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 3, OwnerActionId = 1, Actio |
| | 1 | 727 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 4, OwnerActionId = 1,Action |
| | | 728 | | |
| | 1 | 729 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 5, OwnerActionId = 1,Action |
| | 1 | 730 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 6, OwnerActionId = 1, Actio |
| | 1 | 731 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 7, OwnerActionId = 1, Actio |
| | 1 | 732 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 8, OwnerActionId = 3, Actio |
| | 1 | 733 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 85, OwnerActionId = 3,Actio |
| | 1 | 734 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 9, OwnerActionId = 3, Actio |
| | | 735 | | |
| | 1 | 736 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 10, OwnerActionId = 1,Actio |
| | 1 | 737 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 11, OwnerActionId = 1,Actio |
| | 1 | 738 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 86, OwnerActionId = 1, Acti |
| | | 739 | | |
| | 1 | 740 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 12, OwnerActionId = 1,Actio |
| | 1 | 741 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 13, OwnerActionId = 1,Actio |
| | 1 | 742 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 87, OwnerActionId = 3,Actio |
| | | 743 | | |
| | 1 | 744 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 14, OwnerActionId = 1,Actio |
| | 1 | 745 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 15, OwnerActionId = 1,Actio |
| | | 746 | | |
| | 1 | 747 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 16, OwnerActionId = 2,Actio |
| | 1 | 748 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 17, OwnerActionId = 2,Actio |
| | 1 | 749 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 83, OwnerActionId = 2,Actio |
| | 1 | 750 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 103, OwnerActionId = 2,Acti |
| | 1 | 751 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 18, OwnerActionId = 3,Actio |
| | 1 | 752 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 158, OwnerActionId = 3,Acti |
| | 1 | 753 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 104, OwnerActionId = 3,Acti |
| | | 754 | | |
| | 1 | 755 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 19, OwnerActionId = 1,Actio |
| | 1 | 756 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 45, OwnerActionId = 1,Actio |
| | 1 | 757 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 20, OwnerActionId = 1,Actio |
| | 1 | 758 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 136, OwnerActionId = 1,Acti |
| | 1 | 759 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 21, OwnerActionId = 1,Actio |
| | 1 | 760 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 22, OwnerActionId = 2,Actio |
| | 1 | 761 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 23, OwnerActionId = 3,Actio |
| | 1 | 762 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 137, OwnerActionId = 3,Acti |
| | | 763 | | |
| | 1 | 764 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 24, OwnerActionId = 1,Actio |
| | 1 | 765 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 25, OwnerActionId = 1,Actio |
| | 1 | 766 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 88, OwnerActionId = 1,Actio |
| | 1 | 767 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 138, OwnerActionId = 1,Acti |
| | 1 | 768 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 26, OwnerActionId = 2,Actio |
| | 1 | 769 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 27, OwnerActionId = 2,Actio |
| | 1 | 770 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 43, OwnerActionId = 2,Actio |
| | 1 | 771 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 28, OwnerActionId = 3,Actio |
| | 1 | 772 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 139, OwnerActionId = 3,Acti |
| | | 773 | | |
| | 1 | 774 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 29, OwnerActionId = 1,Actio |
| | 1 | 775 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 30, OwnerActionId = 1,Actio |
| | 1 | 776 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 34, OwnerActionId = 1,Actio |
| | 1 | 777 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 89, OwnerActionId = 1,Actio |
| | 1 | 778 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 140, OwnerActionId = 1,Acti |
| | 1 | 779 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 31, OwnerActionId = 2,Actio |
| | 1 | 780 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 35, OwnerActionId = 2,Actio |
| | 1 | 781 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 44, OwnerActionId = 2,Actio |
| | 1 | 782 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 32, OwnerActionId = 2,Actio |
| | 1 | 783 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 33, OwnerActionId = 2,Actio |
| | 1 | 784 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 98, OwnerActionId = 3,Actio |
| | 1 | 785 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 97, OwnerActionId = 3,Actio |
| | 1 | 786 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 141, OwnerActionId = 3,Acti |
| | | 787 | | |
| | 1 | 788 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 36, OwnerActionId = 1,Actio |
| | 1 | 789 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 37, OwnerActionId = 1,Actio |
| | 1 | 790 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 90, OwnerActionId = 1,Actio |
| | 1 | 791 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 142, OwnerActionId = 1,Acti |
| | 1 | 792 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 38, OwnerActionId = 2,Actio |
| | 1 | 793 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 39, OwnerActionId = 2,Actio |
| | 1 | 794 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 81, OwnerActionId = 2,Actio |
| | 1 | 795 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 40, OwnerActionId = 3,Actio |
| | 1 | 796 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 143, OwnerActionId = 3,Acti |
| | | 797 | | |
| | 1 | 798 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 41, OwnerActionId = 1,Actio |
| | 1 | 799 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 42, OwnerActionId = 1,Actio |
| | 1 | 800 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 144, OwnerActionId = 1,Acti |
| | 1 | 801 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 46, OwnerActionId = 2,Actio |
| | 1 | 802 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 47, OwnerActionId = 3,Actio |
| | 1 | 803 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 145, OwnerActionId = 3,Acti |
| | | 804 | | |
| | 1 | 805 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 48, OwnerActionId = 1,Actio |
| | 1 | 806 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 49, OwnerActionId = 1,Actio |
| | 1 | 807 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 91, OwnerActionId = 1,Actio |
| | 1 | 808 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 82, OwnerActionId = 1,Actio |
| | 1 | 809 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 84, OwnerActionId = 1,Actio |
| | 1 | 810 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 146, OwnerActionId = 1,Acti |
| | 1 | 811 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 50, OwnerActionId = 2,Actio |
| | 1 | 812 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 51, OwnerActionId = 2,Actio |
| | 1 | 813 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 52, OwnerActionId = 3,Actio |
| | 1 | 814 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 53, OwnerActionId = 3,Actio |
| | 1 | 815 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 147, OwnerActionId = 3,Acti |
| | | 816 | | |
| | 1 | 817 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 54, OwnerActionId = 1,Actio |
| | 1 | 818 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 55, OwnerActionId = 1,Actio |
| | 1 | 819 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 148, OwnerActionId = 1,Acti |
| | 1 | 820 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 56, OwnerActionId = 2,Actio |
| | 1 | 821 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 57, OwnerActionId = 2,Actio |
| | 1 | 822 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 58, OwnerActionId = 3,Actio |
| | 1 | 823 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 92, OwnerActionId = 3,Actio |
| | 1 | 824 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 149, OwnerActionId = 3,Acti |
| | | 825 | | |
| | 1 | 826 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 59, OwnerActionId = 1,Actio |
| | 1 | 827 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 60, OwnerActionId = 1,Actio |
| | 1 | 828 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 150, OwnerActionId = 1,Acti |
| | 1 | 829 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 61, OwnerActionId = 2,Actio |
| | 1 | 830 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 62, OwnerActionId = 2,Actio |
| | 1 | 831 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 63, OwnerActionId = 3,Actio |
| | 1 | 832 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 93, OwnerActionId = 3,Actio |
| | 1 | 833 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 151, OwnerActionId = 3,Acti |
| | | 834 | | |
| | 1 | 835 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 64, OwnerActionId = 1,Actio |
| | 1 | 836 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 65, OwnerActionId = 1,Actio |
| | 1 | 837 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 152, OwnerActionId = 1,Acti |
| | 1 | 838 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 66, OwnerActionId = 2,Actio |
| | 1 | 839 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 67, OwnerActionId = 2,Actio |
| | 1 | 840 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 68, OwnerActionId = 3,Actio |
| | 1 | 841 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 94, OwnerActionId = 3,Actio |
| | 1 | 842 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 69, OwnerActionId = 3,Actio |
| | 1 | 843 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 70, OwnerActionId = 3,Actio |
| | 1 | 844 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 153, OwnerActionId = 3,Acti |
| | | 845 | | |
| | 1 | 846 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 71, OwnerActionId = 1,Actio |
| | 1 | 847 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 72, OwnerActionId = 1,Actio |
| | 1 | 848 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 154, OwnerActionId = 1,Acti |
| | 1 | 849 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 73, OwnerActionId = 2,Actio |
| | 1 | 850 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 74, OwnerActionId = 2,Actio |
| | 1 | 851 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 75, OwnerActionId = 3,Actio |
| | 1 | 852 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 95, OwnerActionId = 3,Actio |
| | 1 | 853 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 155, OwnerActionId = 3,Acti |
| | | 854 | | |
| | 1 | 855 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 76, OwnerActionId = 1,Actio |
| | 1 | 856 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 77, OwnerActionId = 1,Actio |
| | 1 | 857 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 156, OwnerActionId = 1,Acti |
| | 1 | 858 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 78, OwnerActionId = 2,Actio |
| | 1 | 859 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 79, OwnerActionId = 2,Actio |
| | 1 | 860 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 80, OwnerActionId = 3,Actio |
| | 1 | 861 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 96, OwnerActionId = 3,Actio |
| | 1 | 862 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 157, OwnerActionId = 3,Acti |
| | | 863 | | |
| | 1 | 864 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 99, OwnerActionId = 1,Actio |
| | 1 | 865 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 100, OwnerActionId = 1,Acti |
| | 1 | 866 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 101, OwnerActionId = 3,Acti |
| | 1 | 867 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 102, OwnerActionId = 1,Acti |
| | | 868 | | |
| | 1 | 869 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 105, OwnerActionId = 1,Acti |
| | 1 | 870 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 106, OwnerActionId = 3,Acti |
| | 1 | 871 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 107, OwnerActionId = 1,Acti |
| | 1 | 872 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 108, OwnerActionId = 3,Acti |
| | | 873 | | |
| | 1 | 874 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 109, OwnerActionId = 1,Acti |
| | 1 | 875 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 110, OwnerActionId = 2,Acti |
| | 1 | 876 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 111, OwnerActionId = 3,Acti |
| | 1 | 877 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 112, OwnerActionId = 1,Acti |
| | 1 | 878 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 113, OwnerActionId = 3,Acti |
| | | 879 | | |
| | 1 | 880 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 114, OwnerActionId = 1, Ac |
| | 1 | 881 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 115, OwnerActionId = 2, Ac |
| | | 882 | | |
| | 1 | 883 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 117, OwnerActionId = 1, Ac |
| | 1 | 884 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 118, OwnerActionId = 2, Ac |
| | 1 | 885 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 119, OwnerActionId = 2, Ac |
| | 1 | 886 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 120, OwnerActionId = 3, Ac |
| | | 887 | | |
| | 1 | 888 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 121, OwnerActionId = 1, Ac |
| | 1 | 889 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 122, OwnerActionId = 2, Ac |
| | 1 | 890 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 123, OwnerActionId = 3, Ac |
| | | 891 | | |
| | 1 | 892 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 124, OwnerActionId = 1, Ac |
| | 1 | 893 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 125, OwnerActionId = 2, Ac |
| | 1 | 894 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 126, OwnerActionId = 3, Ac |
| | | 895 | | |
| | 1 | 896 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 127, OwnerActionId = 1, Ac |
| | 1 | 897 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 128, OwnerActionId = 2, Ac |
| | 1 | 898 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 129, OwnerActionId = 3, Ac |
| | | 899 | | |
| | 1 | 900 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 130, OwnerActionId = 1, Ac |
| | 1 | 901 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 131, OwnerActionId = 2, Ac |
| | 1 | 902 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 132, OwnerActionId = 3, Ac |
| | | 903 | | |
| | 1 | 904 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 133, OwnerActionId = 1, Ac |
| | 1 | 905 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 134, OwnerActionId = 2, Ac |
| | 1 | 906 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 135, OwnerActionId = 3, Ac |
| | | 907 | | |
| | 1 | 908 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 159, OwnerActionId = 1, Act |
| | 1 | 909 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 160, OwnerActionId = 1,Acti |
| | 1 | 910 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 161, OwnerActionId = 1,Acti |
| | 1 | 911 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 162, OwnerActionId = 2,Acti |
| | 1 | 912 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 163, OwnerActionId = 3,Acti |
| | 1 | 913 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction {Id = 164, OwnerActionId = 3, Act |
| | | 914 | | |
| | 1 | 915 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 165, OwnerActionId = 1, Ac |
| | 1 | 916 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 166, OwnerActionId = 1, Ac |
| | 1 | 917 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 167, OwnerActionId = 3, Ac |
| | 1 | 918 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 168, OwnerActionId = 1, Ac |
| | 1 | 919 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 169, OwnerActionId = 1, Ac |
| | 1 | 920 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 170, OwnerActionId = 3, Ac |
| | 1 | 921 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 171, OwnerActionId = 1, Ac |
| | 1 | 922 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 172, OwnerActionId = 3, Ac |
| | 1 | 923 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 173, OwnerActionId = 3, Ac |
| | 1 | 924 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 174, OwnerActionId = 2, Ac |
| | 1 | 925 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 175, OwnerActionId = 3, Ac |
| | 1 | 926 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 176, OwnerActionId = 1, Ac |
| | 1 | 927 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 177, OwnerActionId = 2, Ac |
| | 1 | 928 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 178, OwnerActionId = 3, Ac |
| | 1 | 929 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 179, OwnerActionId = 1, Ac |
| | 1 | 930 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 180, OwnerActionId = 2, Ac |
| | 1 | 931 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 181, OwnerActionId = 2, Ac |
| | 1 | 932 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 182, OwnerActionId = 3, Ac |
| | 1 | 933 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 183, OwnerActionId = 1, Ac |
| | 1 | 934 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 184, OwnerActionId = 2, Ac |
| | 1 | 935 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 185, OwnerActionId = 3, Ac |
| | 1 | 936 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 186, OwnerActionId = 1, Ac |
| | 1 | 937 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 187, OwnerActionId = 2, Ac |
| | 1 | 938 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 188, OwnerActionId = 3, Ac |
| | 1 | 939 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 189, OwnerActionId = 1, Ac |
| | 1 | 940 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 190, OwnerActionId = 2, Ac |
| | 1 | 941 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 191, OwnerActionId = 3, Ac |
| | 1 | 942 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 192, OwnerActionId = 1, Ac |
| | 1 | 943 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 193, OwnerActionId = 2, Ac |
| | 1 | 944 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 194, OwnerActionId = 3, Ac |
| | 1 | 945 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 195, OwnerActionId = 1, Ac |
| | 1 | 946 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 196, OwnerActionId = 2, Ac |
| | 1 | 947 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 197, OwnerActionId = 3, Ac |
| | 1 | 948 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 198, OwnerActionId = 1, Ac |
| | 1 | 949 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 199, OwnerActionId = 2, Ac |
| | 1 | 950 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 200, OwnerActionId = 3, Ac |
| | 1 | 951 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 201, OwnerActionId = 1, Ac |
| | 1 | 952 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 202, OwnerActionId = 2, Ac |
| | 1 | 953 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 203, OwnerActionId = 3, Ac |
| | 1 | 954 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 204, OwnerActionId = 1, Ac |
| | 1 | 955 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 205, OwnerActionId = 2, Ac |
| | 1 | 956 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 206, OwnerActionId = 3, Ac |
| | 1 | 957 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 207, OwnerActionId = 1, Ac |
| | 1 | 958 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 208, OwnerActionId = 2, Ac |
| | 1 | 959 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 209, OwnerActionId = 3, Ac |
| | 1 | 960 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 210, OwnerActionId = 1, Ac |
| | 1 | 961 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 211, OwnerActionId = 2, Ac |
| | 1 | 962 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 212, OwnerActionId = 3, Ac |
| | | 963 | | |
| | | 964 | | |
| | 1 | 965 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 213, OwnerActionId = 1, Ac |
| | 1 | 966 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 214, OwnerActionId = 1, Ac |
| | 1 | 967 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 215, OwnerActionId = 1, Ac |
| | 1 | 968 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 216, OwnerActionId = 1, Ac |
| | 1 | 969 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 217, OwnerActionId = 1, Ac |
| | 1 | 970 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 218, OwnerActionId = 1, Ac |
| | 1 | 971 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 219, OwnerActionId = 2, Ac |
| | 1 | 972 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 220, OwnerActionId = 2, Ac |
| | 1 | 973 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 221, OwnerActionId = 2, Ac |
| | 1 | 974 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 222, OwnerActionId = 2, Ac |
| | 1 | 975 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 223, OwnerActionId = 2, Ac |
| | 1 | 976 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 224, OwnerActionId = 3, Ac |
| | 1 | 977 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 225, OwnerActionId = 3, Ac |
| | 1 | 978 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 226, OwnerActionId = 3, Ac |
| | 1 | 979 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 227, OwnerActionId = 3, Ac |
| | | 980 | | |
| | 1 | 981 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 228, OwnerActionId = 2, Ac |
| | | 982 | | |
| | 1 | 983 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 229, OwnerActionId = 1, Ac |
| | 1 | 984 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 230, OwnerActionId = 2, Ac |
| | 1 | 985 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 231, OwnerActionId = 3, Ac |
| | 1 | 986 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 232, OwnerActionId = 1, Ac |
| | 1 | 987 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 233, OwnerActionId = 2, Ac |
| | 1 | 988 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 234, OwnerActionId = 3, Ac |
| | | 989 | | |
| | 1 | 990 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 235, OwnerActionId = 1, Ac |
| | 1 | 991 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 236, OwnerActionId = 2, Ac |
| | 1 | 992 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 237, OwnerActionId = 3, Ac |
| | | 993 | | |
| | 1 | 994 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 238, OwnerActionId = 1, Ac |
| | 1 | 995 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 239, OwnerActionId = 2, Ac |
| | 1 | 996 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 240, OwnerActionId = 3, Ac |
| | | 997 | | |
| | 1 | 998 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 241, OwnerActionId = 1, Ac |
| | 1 | 999 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 242, OwnerActionId = 2, Ac |
| | 1 | 1000 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 243, OwnerActionId = 3, Ac |
| | | 1001 | | |
| | 1 | 1002 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 244, OwnerActionId = 1, Ac |
| | 1 | 1003 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 245, OwnerActionId = 2, Ac |
| | 1 | 1004 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 246, OwnerActionId = 3, Ac |
| | | 1005 | | |
| | 1 | 1006 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 247, OwnerActionId = 1, Ac |
| | 1 | 1007 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 248, OwnerActionId = 2, Ac |
| | 1 | 1008 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 249, OwnerActionId = 3, Ac |
| | | 1009 | | |
| | 1 | 1010 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 250, OwnerActionId = 1, Ac |
| | 1 | 1011 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 251, OwnerActionId = 2, Ac |
| | 1 | 1012 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 252, OwnerActionId = 3, Ac |
| | | 1013 | | |
| | 1 | 1014 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 253, OwnerActionId = 1, Ac |
| | 1 | 1015 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 254, OwnerActionId = 2, Ac |
| | 1 | 1016 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 255, OwnerActionId = 3, Ac |
| | | 1017 | | |
| | 1 | 1018 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 256, OwnerActionId = 1, Ac |
| | 1 | 1019 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 257, OwnerActionId = 2, Ac |
| | 1 | 1020 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 258, OwnerActionId = 3, Ac |
| | | 1021 | | |
| | 1 | 1022 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 259, OwnerActionId = 1, Ac |
| | 1 | 1023 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 260, OwnerActionId = 2, Ac |
| | 1 | 1024 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 261, OwnerActionId = 3, Ac |
| | | 1025 | | |
| | 1 | 1026 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 262, OwnerActionId = 1, Ac |
| | 1 | 1027 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 263, OwnerActionId = 2, Ac |
| | 1 | 1028 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 264, OwnerActionId = 3, Ac |
| | | 1029 | | |
| | 1 | 1030 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 265, OwnerActionId = 1, Ac |
| | 1 | 1031 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 266, OwnerActionId = 2, Ac |
| | 1 | 1032 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 267, OwnerActionId = 3, Ac |
| | | 1033 | | |
| | 1 | 1034 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 268, OwnerActionId = 1, Ac |
| | 1 | 1035 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 269, OwnerActionId = 2, Ac |
| | 1 | 1036 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 270, OwnerActionId = 3, Ac |
| | | 1037 | | |
| | 1 | 1038 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 271, OwnerActionId = 1, Ac |
| | 1 | 1039 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 272, OwnerActionId = 2, Ac |
| | 1 | 1040 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 273, OwnerActionId = 3, Ac |
| | | 1041 | | |
| | 1 | 1042 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 274, OwnerActionId = 1, Ac |
| | 1 | 1043 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 275, OwnerActionId = 2, Ac |
| | 1 | 1044 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 276, OwnerActionId = 3, Ac |
| | | 1045 | | |
| | 1 | 1046 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 277, OwnerActionId = 1, Ac |
| | 1 | 1047 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 278, OwnerActionId = 2, Ac |
| | 1 | 1048 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 279, OwnerActionId = 3, Ac |
| | | 1049 | | |
| | 1 | 1050 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 280, OwnerActionId = 1, Ac |
| | 1 | 1051 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 281, OwnerActionId = 2, Ac |
| | 1 | 1052 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 282, OwnerActionId = 3, Ac |
| | | 1053 | | |
| | 1 | 1054 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 283, OwnerActionId = 1, Ac |
| | 1 | 1055 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 284, OwnerActionId = 2, Ac |
| | 1 | 1056 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 285, OwnerActionId = 3, Ac |
| | | 1057 | | |
| | 1 | 1058 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 286, OwnerActionId = 1, Ac |
| | 1 | 1059 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 287, OwnerActionId = 2, Ac |
| | 1 | 1060 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 288, OwnerActionId = 3, Ac |
| | | 1061 | | |
| | 1 | 1062 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 289, OwnerActionId = 1, Ac |
| | 1 | 1063 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 290, OwnerActionId = 2, Ac |
| | 1 | 1064 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 291, OwnerActionId = 3, Ac |
| | | 1065 | | |
| | 1 | 1066 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 292, OwnerActionId = 1, Ac |
| | 1 | 1067 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 293, OwnerActionId = 2, Ac |
| | 1 | 1068 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 294, OwnerActionId = 3, Ac |
| | | 1069 | | |
| | 1 | 1070 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 295, OwnerActionId = 1, Ac |
| | 1 | 1071 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 296, OwnerActionId = 2, Ac |
| | 1 | 1072 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 297, OwnerActionId = 3, Ac |
| | | 1073 | | |
| | 1 | 1074 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 298, OwnerActionId = 1, Ac |
| | 1 | 1075 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 299, OwnerActionId = 2, Ac |
| | 1 | 1076 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 300, OwnerActionId = 3, Ac |
| | | 1077 | | |
| | | 1078 | | |
| | 1 | 1079 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 301, OwnerActionId = 1, Ac |
| | 1 | 1080 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 302, OwnerActionId = 2, Ac |
| | 1 | 1081 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 303, OwnerActionId = 3, Ac |
| | | 1082 | | |
| | 1 | 1083 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 304, OwnerActionId = 1, Ac |
| | 1 | 1084 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 305, OwnerActionId = 2, Ac |
| | 1 | 1085 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 306, OwnerActionId = 3, Ac |
| | | 1086 | | |
| | 1 | 1087 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 307, OwnerActionId = 1, Ac |
| | 1 | 1088 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 308, OwnerActionId = 2, Ac |
| | 1 | 1089 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 309, OwnerActionId = 3, Ac |
| | | 1090 | | |
| | 1 | 1091 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 310, OwnerActionId = 1, Ac |
| | 1 | 1092 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 311, OwnerActionId = 2, Ac |
| | 1 | 1093 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 312, OwnerActionId = 3, Ac |
| | | 1094 | | |
| | 1 | 1095 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 313, OwnerActionId = 1, Ac |
| | 1 | 1096 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 314, OwnerActionId = 2, Ac |
| | 1 | 1097 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 315, OwnerActionId = 3, Ac |
| | | 1098 | | |
| | 1 | 1099 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 316, OwnerActionId = 1, Ac |
| | 1 | 1100 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 317, OwnerActionId = 2, Ac |
| | 1 | 1101 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 318, OwnerActionId = 3, Ac |
| | | 1102 | | |
| | 1 | 1103 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 319, OwnerActionId = 1, Ac |
| | 1 | 1104 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 320, OwnerActionId = 2, Ac |
| | 1 | 1105 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 321, OwnerActionId = 3, Ac |
| | | 1106 | | |
| | 1 | 1107 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 322, OwnerActionId = 1, Ac |
| | 1 | 1108 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 323, OwnerActionId = 2, Ac |
| | 1 | 1109 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 324, OwnerActionId = 3, Ac |
| | | 1110 | | |
| | 1 | 1111 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 325, OwnerActionId = 3, Ac |
| | 1 | 1112 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 326, OwnerActionId = 3, Ac |
| | 1 | 1113 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 327, OwnerActionId = 3, Ac |
| | 1 | 1114 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 328, OwnerActionId = 3, Ac |
| | 1 | 1115 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 329, OwnerActionId = 3, Ac |
| | 1 | 1116 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 330, OwnerActionId = 3, Ac |
| | | 1117 | | |
| | 1 | 1118 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 331, OwnerActionId = 3, Ac |
| | 1 | 1119 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 332, OwnerActionId = 2, Ac |
| | 1 | 1120 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 333, OwnerActionId = 3, Ac |
| | 1 | 1121 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 334, OwnerActionId = 3, Ac |
| | 1 | 1122 | | modelBuilder.Entity<MovementRouteAction>().HasData(new MovementRouteAction { Id = 335, OwnerActionId = 3, Ac |
| | | 1123 | | |
| | | 1124 | | |
| | 1 | 1125 | | modelBuilder.Entity<FrontAction>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1126 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 1, Name = "viewOrderDraft", Description = |
| | 1 | 1127 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 2, Name = "viewPricing", Description = "Ра |
| | 1 | 1128 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 3, Name = "viewNotifications", Description |
| | 1 | 1129 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 4, Name = "viewShipments", Description = " |
| | 1 | 1130 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 5, Name = "viewSupport", Description = "Ра |
| | 1 | 1131 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 6, Name = "viewAnalytics", Description = " |
| | 1 | 1132 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 7, Name = "viewRests", Description = "Разр |
| | 1 | 1133 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 8, Name = "viewOrders", Description = "Раз |
| | 1 | 1134 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 9, Name = "viewUser", Description = "Разре |
| | 1 | 1135 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 10, Name = "viewSelectionParameters", Desc |
| | 1 | 1136 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 11, Name = "viewShowcase", Description = " |
| | 1 | 1137 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 12, Name = "viewSystemManagement", Descrip |
| | 1 | 1138 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 13, Name = "viewSettings", Description = " |
| | 1 | 1139 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 14, Name = "viewDepartments", Description |
| | 1 | 1140 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 15, Name = "viewOrganisationPaymentAccount |
| | 1 | 1141 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 16, Name = "viewNomenclature", Description |
| | 1 | 1142 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 17, Name = "viewBrands", Description = "Ра |
| | 1 | 1143 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 18, Name = "viewGoodsHierarchy", Descripti |
| | 1 | 1144 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 19, Name = "addDepartment", Description = |
| | 1 | 1145 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 20, Name = "editContracts", Description = |
| | 1 | 1146 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 21, Name = "deleteContracts", Description |
| | 1 | 1147 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 22, Name = "viewAdministration", Descripti |
| | 1 | 1148 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 23, Name = "editGoodHierarchy", Descriptio |
| | 1 | 1149 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 24, Name = "editBrands", Description = "Ра |
| | 1 | 1150 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 25, Name = "editNomenclature", Description |
| | 1 | 1151 | | modelBuilder.Entity<FrontAction>().HasData(new FrontAction { Id = 26, Name = "viewAnonymousCache", Descripti |
| | | 1152 | | |
| | 1 | 1153 | | modelBuilder.Entity<ControlAccess>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1154 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 26, RoleId = (long)1, ActionId = (long |
| | 1 | 1155 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 27, RoleId = (long)1, ActionId = (long |
| | 1 | 1156 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 28, RoleId = (long)1, ActionId = (long |
| | 1 | 1157 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 29, RoleId = (long)1, ActionId = (long |
| | 1 | 1158 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 30, RoleId = (long)1, ActionId = (long |
| | 1 | 1159 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 31, RoleId = (long)1, ActionId = (long |
| | 1 | 1160 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 32, RoleId = (long)1, ActionId = (long |
| | 1 | 1161 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 33, RoleId = (long)1, ActionId = (long |
| | 1 | 1162 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 34, RoleId = (long)2, ActionId = (long |
| | 1 | 1163 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 35, RoleId = (long)2, ActionId = (long |
| | 1 | 1164 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 36, RoleId = (long)2, ActionId = (long |
| | 1 | 1165 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 37, RoleId = (long)2, ActionId = (long |
| | 1 | 1166 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 38, RoleId = (long)2, ActionId = (long |
| | 1 | 1167 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 39, RoleId = (long)2, ActionId = (long |
| | 1 | 1168 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 40, RoleId = (long)2, ActionId = (long |
| | 1 | 1169 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 41, RoleId = (long)2, ActionId = (long |
| | 1 | 1170 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 42, RoleId = (long)6, ActionId = (long |
| | 1 | 1171 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 43, RoleId = (long)6, ActionId = (long |
| | 1 | 1172 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 44, RoleId = (long)6, ActionId = (long |
| | 1 | 1173 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 45, RoleId = (long)6, ActionId = (long |
| | 1 | 1174 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 46, RoleId = (long)6, ActionId = (long |
| | 1 | 1175 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 47, RoleId = (long)6, ActionId = (long |
| | 1 | 1176 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 48, RoleId = (long)6, ActionId = (long |
| | 1 | 1177 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 49, RoleId = (long)7, ActionId = (long |
| | 1 | 1178 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 50, RoleId = (long)7, ActionId = (long |
| | 1 | 1179 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 51, RoleId = (long)7, ActionId = (long |
| | 1 | 1180 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 52, RoleId = (long)7, ActionId = (long |
| | 1 | 1181 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 53, RoleId = (long)7, ActionId = (long |
| | 1 | 1182 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 54, RoleId = (long)7, ActionId = (long |
| | 1 | 1183 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 55, RoleId = (long)7, ActionId = (long |
| | 1 | 1184 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 56, RoleId = (long)8, ActionId = (long |
| | 1 | 1185 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 57, RoleId = (long)8, ActionId = (long |
| | 1 | 1186 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 58, RoleId = (long)8, ActionId = (long |
| | 1 | 1187 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 59, RoleId = (long)8, ActionId = (long |
| | 1 | 1188 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 60, RoleId = (long)8, ActionId = (long |
| | 1 | 1189 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 61, RoleId = (long)8, ActionId = (long |
| | 1 | 1190 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 62, RoleId = (long)8, ActionId = (long |
| | 1 | 1191 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 63, RoleId = (long)3, ActionId = (long |
| | 1 | 1192 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 64, RoleId = (long)3, ActionId = (long |
| | 1 | 1193 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 65, RoleId = (long)3, ActionId = (long |
| | 1 | 1194 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 66, RoleId = (long)3, ActionId = (long |
| | 1 | 1195 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 67, RoleId = (long)3, ActionId = (long |
| | 1 | 1196 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 69, RoleId = (long)4, ActionId = (long |
| | 1 | 1197 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 70, RoleId = (long)4, ActionId = (long |
| | 1 | 1198 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 71, RoleId = (long)4, ActionId = (long |
| | 1 | 1199 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 72, RoleId = (long)4, ActionId = (long |
| | 1 | 1200 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 73, RoleId = (long)4, ActionId = (long |
| | 1 | 1201 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 75, RoleId = (long)5, ActionId = (long |
| | 1 | 1202 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 76, RoleId = (long)5, ActionId = (long |
| | 1 | 1203 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 77, RoleId = (long)5, ActionId = (long |
| | 1 | 1204 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 78, RoleId = (long)5, ActionId = (long |
| | 1 | 1205 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 79, RoleId = (long)5, ActionId = (long |
| | 1 | 1206 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 82, RoleId = (long)9, ActionId = (long |
| | 1 | 1207 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 83, RoleId = (long)1, ActionId = (long |
| | 1 | 1208 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 84, RoleId = (long)2, ActionId = (long |
| | 1 | 1209 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 85, RoleId = (long)3, ActionId = (long |
| | 1 | 1210 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 86, RoleId = (long)4, ActionId = (long |
| | 1 | 1211 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 87, RoleId = (long)5, ActionId = (long |
| | 1 | 1212 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 88, RoleId = (long)6, ActionId = (long |
| | 1 | 1213 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 89, RoleId = (long)7, ActionId = (long |
| | 1 | 1214 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 90, RoleId = (long)8, ActionId = (long |
| | 1 | 1215 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 95, RoleId = (long)7, ActionId = (long |
| | 1 | 1216 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 96, RoleId = (long)7, ActionId = (long |
| | 1 | 1217 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 97, RoleId = (long)7, ActionId = (long |
| | 1 | 1218 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 98, RoleId = (long)1, ActionId = (long |
| | 1 | 1219 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 99, RoleId = (long)1, ActionId = (long |
| | 1 | 1220 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 100, RoleId = (long)1, ActionId = (lon |
| | 1 | 1221 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 101, RoleId = (long)2, ActionId = (lon |
| | 1 | 1222 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 102, RoleId = (long)2, ActionId = (lon |
| | 1 | 1223 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 103, RoleId = (long)2, ActionId = (lon |
| | 1 | 1224 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 104, RoleId = (long)3, ActionId = (lon |
| | 1 | 1225 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 105, RoleId = (long)3, ActionId = (lon |
| | 1 | 1226 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 106, RoleId = (long)3, ActionId = (lon |
| | 1 | 1227 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 107, RoleId = (long)1, ActionId = (lon |
| | 1 | 1228 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 108, RoleId = (long)2, ActionId = (lon |
| | 1 | 1229 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 109, RoleId = (long)3, ActionId = (lon |
| | 1 | 1230 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 110, RoleId = (long)7, ActionId = (lon |
| | 1 | 1231 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 111, RoleId = (long)6, ActionId = (lon |
| | 1 | 1232 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 112, RoleId = (long)6, ActionId = (lon |
| | 1 | 1233 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 113, RoleId = (long)6, ActionId = (lon |
| | 1 | 1234 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 114, RoleId = (long)6, ActionId = (lon |
| | 1 | 1235 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 115, RoleId = (long)3, ActionId = (lon |
| | 1 | 1236 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 116, RoleId = (long)4, ActionId = (lon |
| | 1 | 1237 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 117, RoleId = (long)5, ActionId = (lon |
| | 1 | 1238 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 118, RoleId = (long)3, ActionId = (lon |
| | 1 | 1239 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 119, RoleId = (long)4, ActionId = (lon |
| | 1 | 1240 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 120, RoleId = (long)4, ActionId = (lon |
| | 1 | 1241 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 121, RoleId = (long)4, ActionId = (lon |
| | 1 | 1242 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 122, RoleId = (long)5, ActionId = (lon |
| | 1 | 1243 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 123, RoleId = (long)5, ActionId = (lon |
| | 1 | 1244 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 124, RoleId = (long)5, ActionId = (lon |
| | 1 | 1245 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 127, RoleId = (long)3, ActionId = (lon |
| | 1 | 1246 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 130, RoleId = (long)6, ActionId = (lon |
| | 1 | 1247 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 131, RoleId = (long)1, ActionId = (lon |
| | 1 | 1248 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 132, RoleId = (long)3, ActionId = (lon |
| | 1 | 1249 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 133, RoleId = (long)4, ActionId = (lon |
| | 1 | 1250 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 134, RoleId = (long)5, ActionId = (lon |
| | 1 | 1251 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 135, RoleId = (long)6, ActionId = (lon |
| | 1 | 1252 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 136, RoleId = (long)7, ActionId = (lon |
| | 1 | 1253 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 137, RoleId = (long)8, ActionId = (lon |
| | 1 | 1254 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 138, RoleId = (long)1, ActionId = (lon |
| | 1 | 1255 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 139, RoleId = (long)3, ActionId = (lon |
| | 1 | 1256 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 140, RoleId = (long)4, ActionId = (lon |
| | 1 | 1257 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 141, RoleId = (long)5, ActionId = (lon |
| | 1 | 1258 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 142, RoleId = (long)6, ActionId = (lon |
| | 1 | 1259 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 143, RoleId = (long)7, ActionId = (lon |
| | 1 | 1260 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 144, RoleId = (long)8, ActionId = (lon |
| | 1 | 1261 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 145, RoleId = (long)1, ActionId = (lon |
| | 1 | 1262 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 146, RoleId = (long)3, ActionId = (lon |
| | 1 | 1263 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 147, RoleId = (long)4, ActionId = (lon |
| | 1 | 1264 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 148, RoleId = (long)5, ActionId = (lon |
| | 1 | 1265 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 149, RoleId = (long)6, ActionId = (lon |
| | 1 | 1266 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 150, RoleId = (long)7, ActionId = (lon |
| | 1 | 1267 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 151, RoleId = (long)8, ActionId = (lon |
| | 1 | 1268 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 152, RoleId = (long)1, ActionId = (lon |
| | 1 | 1269 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 153, RoleId = (long)3, ActionId = (lon |
| | 1 | 1270 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 154, RoleId = (long)4, ActionId = (lon |
| | 1 | 1271 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 155, RoleId = (long)5, ActionId = (lon |
| | 1 | 1272 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 156, RoleId = (long)6, ActionId = (lon |
| | 1 | 1273 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 157, RoleId = (long)7, ActionId = (lon |
| | 1 | 1274 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 158, RoleId = (long)8, ActionId = (lon |
| | 1 | 1275 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 159, RoleId = (long)1, ActionId = (lon |
| | 1 | 1276 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 160, RoleId = (long)3, ActionId = (lon |
| | 1 | 1277 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 161, RoleId = (long)4, ActionId = (lon |
| | 1 | 1278 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 162, RoleId = (long)5, ActionId = (lon |
| | 1 | 1279 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 163, RoleId = (long)6, ActionId = (lon |
| | 1 | 1280 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 164, RoleId = (long)7, ActionId = (lon |
| | 1 | 1281 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 165, RoleId = (long)8, ActionId = (lon |
| | 1 | 1282 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 166, RoleId = (long)1, ActionId = (lon |
| | 1 | 1283 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 167, RoleId = (long)2, ActionId = (lon |
| | 1 | 1284 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 168, RoleId = (long)3, ActionId = (lon |
| | 1 | 1285 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 169, RoleId = (long)4, ActionId = (lon |
| | 1 | 1286 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 170, RoleId = (long)5, ActionId = (lon |
| | 1 | 1287 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 171, RoleId = (long)6, ActionId = (lon |
| | 1 | 1288 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 172, RoleId = (long)8, ActionId = (lon |
| | 1 | 1289 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 173, RoleId = (long)1, ActionId = (lon |
| | 1 | 1290 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 174, RoleId = (long)2, ActionId = (lon |
| | 1 | 1291 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 175, RoleId = (long)1, ActionId = (lon |
| | 1 | 1292 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 176, RoleId = (long)1, ActionId = (lon |
| | 1 | 1293 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 177, RoleId = (long)1, ActionId = (lon |
| | 1 | 1294 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 179, RoleId = (long)9, ActionId = (lon |
| | 1 | 1295 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 180, RoleId = (long)3, ActionId = (lon |
| | 1 | 1296 | | modelBuilder.Entity<ControlAccess>().HasData(new ControlAccess { Id = 181, RoleId = (long)4, ActionId = (lon |
| | | 1297 | | |
| | 1 | 1298 | | modelBuilder.Entity<Configuration>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1299 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 3, Section = "GlobalCorsSettings", Key |
| | 1 | 1300 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 4, Section = "CrmSettings", Key = "Syn |
| | 1 | 1301 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 10, Section = "EmailSettings", Key = " |
| | 1 | 1302 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 11, Section = "EmailSettings", Key = " |
| | 1 | 1303 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 12, Section = "EmailSettings", Key = " |
| | 1 | 1304 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 13, Section = "EmailSettings", Key = " |
| | 1 | 1305 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 14, Section = "EmailSettings", Key = " |
| | 1 | 1306 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 15, Section = "WalletSettings", Key = |
| | 1 | 1307 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 16, Section = "WalletSettings", Key = |
| | 1 | 1308 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 17, Section = "WalletSettings", Key = |
| | 1 | 1309 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 18, Section = "WalletSettings", Key = |
| | 1 | 1310 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 22, Section = "WalletSettings", Key = |
| | 1 | 1311 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 23, Section = "WalletSettings", Key = |
| | 1 | 1312 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 24, Section = "WalletSettings", Key = |
| | 1 | 1313 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 25, Section = "WalletSettings", Key = |
| | 1 | 1314 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 26, Section = "AuthenticationSettings" |
| | 1 | 1315 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 27, Section = "AuthenticationSettings" |
| | 1 | 1316 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 28, Section = "FeedsSettings", Key = " |
| | 1 | 1317 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 29, Section = "FeedsSettings", Key = " |
| | 1 | 1318 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 30, Section = "FeedsSettings", Key = " |
| | 1 | 1319 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 31, Section = "ImageSettings", Key = " |
| | 1 | 1320 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 32, Section = "ImageSettings", Key = " |
| | 1 | 1321 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 33, Section = "ImageSettings", Key = " |
| | 1 | 1322 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 34, Section = "MovementAttachmentSetti |
| | 1 | 1323 | | modelBuilder.Entity<Configuration>().HasData(new Configuration { Id = 35, Section = "MovementAttachmentSetti |
| | | 1324 | | |
| | 1 | 1325 | | modelBuilder.Entity<WorkSchedule>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1326 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 1, BeginTime = DateTime.Parse("2020-05-1 |
| | 1 | 1327 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 2, BeginTime = DateTime.Parse("2020-05-1 |
| | 1 | 1328 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 3, BeginTime = DateTime.Parse("2020-05-2 |
| | 1 | 1329 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 4, BeginTime = DateTime.Parse("2020-05-2 |
| | 1 | 1330 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 5, BeginTime = DateTime.Parse("2020-05-2 |
| | 1 | 1331 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 6, BeginTime = DateTime.Parse("2020-05-2 |
| | 1 | 1332 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 7, BeginTime = DateTime.Parse("2020-05-2 |
| | 1 | 1333 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 8, BeginTime = DateTime.Parse("2020-05-2 |
| | 1 | 1334 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 9, BeginTime = DateTime.Parse("2020-05-2 |
| | 1 | 1335 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 10, BeginTime = DateTime.Parse("2020-05- |
| | 1 | 1336 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 11, BeginTime = DateTime.Parse("2020-05- |
| | 1 | 1337 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 12, BeginTime = DateTime.Parse("2020-05- |
| | 1 | 1338 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 13, BeginTime = DateTime.Parse("2020-05- |
| | 1 | 1339 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 14, BeginTime = DateTime.Parse("2020-05- |
| | 1 | 1340 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 15, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1341 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 16, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1342 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 17, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1343 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 18, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1344 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 19, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1345 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 20, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1346 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 21, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1347 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 22, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1348 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 23, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1349 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 24, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1350 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 25, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1351 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 26, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1352 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 27, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1353 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 28, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1354 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 29, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1355 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 30, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1356 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 31, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1357 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 32, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1358 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 33, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1359 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 34, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1360 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 35, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1361 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 36, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1362 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 37, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1363 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 38, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1364 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 39, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1365 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 40, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1366 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 41, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1367 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 42, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1368 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 43, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1369 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 44, BeginTime = DateTime.Parse("2020-06- |
| | 1 | 1370 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 45, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1371 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 46, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1372 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 47, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1373 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 48, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1374 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 49, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1375 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 50, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1376 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 51, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1377 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 52, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1378 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 53, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1379 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 54, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1380 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 55, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1381 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 56, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1382 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 57, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1383 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 58, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1384 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 59, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1385 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 60, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1386 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 61, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1387 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 62, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1388 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 63, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1389 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 64, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1390 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 65, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1391 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 66, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1392 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 67, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1393 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 68, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1394 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 69, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1395 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 70, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1396 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 71, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1397 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 72, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1398 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 73, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1399 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 74, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1400 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 75, BeginTime = DateTime.Parse("2020-07- |
| | 1 | 1401 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 76, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1402 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 77, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1403 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 78, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1404 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 79, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1405 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 80, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1406 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 81, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1407 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 82, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1408 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 83, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1409 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 84, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1410 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 85, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1411 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 86, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1412 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 87, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1413 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 88, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1414 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 89, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1415 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 90, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1416 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 91, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1417 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 92, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1418 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 93, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1419 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 94, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1420 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 95, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1421 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 96, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1422 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 97, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1423 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 98, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1424 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 99, BeginTime = DateTime.Parse("2020-08- |
| | 1 | 1425 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 100, BeginTime = DateTime.Parse("2020-08 |
| | 1 | 1426 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 101, BeginTime = DateTime.Parse("2020-08 |
| | 1 | 1427 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 102, BeginTime = DateTime.Parse("2020-08 |
| | 1 | 1428 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 103, BeginTime = DateTime.Parse("2020-08 |
| | 1 | 1429 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 104, BeginTime = DateTime.Parse("2020-08 |
| | 1 | 1430 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 105, BeginTime = DateTime.Parse("2020-08 |
| | 1 | 1431 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 106, BeginTime = DateTime.Parse("2020-08 |
| | 1 | 1432 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 107, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1433 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 108, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1434 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 109, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1435 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 110, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1436 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 111, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1437 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 112, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1438 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 113, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1439 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 114, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1440 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 115, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1441 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 116, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1442 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 117, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1443 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 118, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1444 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 119, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1445 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 120, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1446 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 121, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1447 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 122, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1448 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 123, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1449 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 124, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1450 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 125, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1451 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 126, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1452 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 127, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1453 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 128, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1454 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 129, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1455 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 130, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1456 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 131, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1457 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 132, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1458 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 133, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1459 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 134, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1460 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 135, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1461 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 136, BeginTime = DateTime.Parse("2020-09 |
| | 1 | 1462 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 137, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1463 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 138, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1464 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 139, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1465 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 140, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1466 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 141, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1467 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 142, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1468 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 143, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1469 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 144, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1470 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 145, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1471 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 146, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1472 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 147, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1473 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 148, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1474 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 149, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1475 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 150, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1476 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 151, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1477 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 152, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1478 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 153, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1479 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 154, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1480 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 155, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1481 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 156, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1482 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 157, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1483 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 158, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1484 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 159, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1485 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 160, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1486 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 161, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1487 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 162, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1488 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 163, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1489 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 164, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1490 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 165, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1491 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 166, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1492 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 167, BeginTime = DateTime.Parse("2020-10 |
| | 1 | 1493 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 168, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1494 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 169, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1495 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 170, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1496 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 171, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1497 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 172, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1498 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 173, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1499 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 174, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1500 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 175, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1501 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 176, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1502 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 177, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1503 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 178, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1504 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 179, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1505 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 180, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1506 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 181, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1507 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 182, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1508 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 183, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1509 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 184, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1510 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 185, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1511 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 186, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1512 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 187, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1513 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 188, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1514 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 189, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1515 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 190, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1516 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 191, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1517 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 192, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1518 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 193, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1519 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 194, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1520 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 195, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1521 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 196, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1522 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 197, BeginTime = DateTime.Parse("2020-11 |
| | 1 | 1523 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 198, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1524 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 199, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1525 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 200, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1526 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 201, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1527 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 202, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1528 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 203, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1529 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 204, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1530 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 205, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1531 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 206, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1532 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 207, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1533 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 208, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1534 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 209, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1535 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 210, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1536 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 211, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1537 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 212, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1538 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 213, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1539 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 214, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1540 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 215, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1541 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 216, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1542 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 217, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1543 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 218, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1544 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 219, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1545 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 220, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1546 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 221, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1547 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 222, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1548 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 223, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1549 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 224, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1550 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 225, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1551 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 226, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1552 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 227, BeginTime = DateTime.Parse("2020-12 |
| | 1 | 1553 | | modelBuilder.Entity<WorkSchedule>().HasData(new WorkSchedule { Id = 228, BeginTime = DateTime.Parse("2020-12 |
| | | 1554 | | |
| | | 1555 | | |
| | 1 | 1556 | | modelBuilder.Entity<DiscountColor>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1557 | | modelBuilder.Entity<DiscountColor>().HasData(new DiscountColor { Id = 1, DiscountLevel= 20, LabelColor= "#EA |
| | 1 | 1558 | | modelBuilder.Entity<DiscountColor>().HasData(new DiscountColor { Id = 2, DiscountLevel = 0, LabelColor = "#F |
| | | 1559 | | |
| | 1 | 1560 | | modelBuilder.Entity<ConfigurationsDataType>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1561 | | modelBuilder.Entity<ConfigurationsDataType>().HasData(new ConfigurationsDataType { Id = 1, Name = "string", |
| | 1 | 1562 | | modelBuilder.Entity<ConfigurationsDataType>().HasData(new ConfigurationsDataType { Id = 2, Name = "int", Des |
| | 1 | 1563 | | modelBuilder.Entity<ConfigurationsDataType>().HasData(new ConfigurationsDataType { Id = 3, Name = "datetime" |
| | 1 | 1564 | | modelBuilder.Entity<ConfigurationsDataType>().HasData(new ConfigurationsDataType { Id = 4, Name = "bool", De |
| | 1 | 1565 | | modelBuilder.Entity<ConfigurationsDataType>().HasData(new ConfigurationsDataType { Id = 5, Name = "guid", De |
| | | 1566 | | |
| | 1 | 1567 | | modelBuilder.Entity<TelegramNotification>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1568 | | modelBuilder.Entity<TelegramNotification>().HasData(new TelegramNotification { Id = 1, HashTag = "#order", D |
| | 1 | 1569 | | modelBuilder.Entity<TelegramNotification>().HasData(new TelegramNotification { Id = 2, HashTag = "#departmen |
| | 1 | 1570 | | modelBuilder.Entity<TelegramNotification>().HasData(new TelegramNotification { Id = 3, HashTag = "#newclient |
| | | 1571 | | |
| | 1 | 1572 | | modelBuilder.Entity<DeliveryType>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1573 | | modelBuilder.Entity<DeliveryType>().HasData(new DeliveryType { Id = 1, Name = "Доставка", Code = "Delivery", |
| | 1 | 1574 | | modelBuilder.Entity<DeliveryType>().HasData(new DeliveryType { Id = 2, Name = "Самовывоз", Code = "Pickup", |
| | | 1575 | | |
| | 1 | 1576 | | modelBuilder.Entity<DeliveryCostType>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1577 | | modelBuilder.Entity<DeliveryCostType>().HasData(new DeliveryCostType { Id = 1, Name = "Сумма заказа", Code = |
| | 1 | 1578 | | modelBuilder.Entity<DeliveryCostType>().HasData(new DeliveryCostType { Id = 2, Name = "Габаритные характерис |
| | | 1579 | | |
| | 1 | 1580 | | modelBuilder.Entity<Address>().HasData(new Address |
| | 1 | 1581 | | { |
| | 1 | 1582 | | Id = (long)-1, |
| | 1 | 1583 | | Building = "1", |
| | 1 | 1584 | | City = "Краснодар", |
| | 1 | 1585 | | District = "Район 9", |
| | 1 | 1586 | | FullAddress = "Краснодар 1", |
| | 1 | 1587 | | House = "1", |
| | 1 | 1588 | | Housing = "1", |
| | 1 | 1589 | | Index = "1", |
| | 1 | 1590 | | Locality = "1", |
| | 1 | 1591 | | Office = "1", |
| | 1 | 1592 | | Region = "1", |
| | 1 | 1593 | | Street = "1", |
| | 1 | 1594 | | CreationDateTime = dt, |
| | 1 | 1595 | | ModificationDateTime = null, |
| | 1 | 1596 | | GUID = guid, |
| | 1 | 1597 | | }); |
| | | 1598 | | |
| | 1 | 1599 | | modelBuilder.Entity<User>().HasData(new |
| | 1 | 1600 | | { |
| | 1 | 1601 | | Id = -1L, |
| | 1 | 1602 | | ContragentId = (long?)-2, |
| | 1 | 1603 | | Email = "EmbeddedSvetaAdmin@dd.com", |
| | 1 | 1604 | | FirstName = "ServiceUser", |
| | 1 | 1605 | | IsBlocked = false, |
| | 1 | 1606 | | IsContactPerson = true, |
| | 1 | 1607 | | LastName = "1", |
| | 1 | 1608 | | Login = "svetaAdmin", |
| | 1 | 1609 | | MiddleName = "1", |
| | 1 | 1610 | | Phone = "1", |
| | 1 | 1611 | | Position = "1", |
| | 1 | 1612 | | IsDeleted = false, |
| | 1 | 1613 | | CreationDateTime = dt, |
| | 1 | 1614 | | ModificationDateTime = (DateTime?)null, |
| | 1 | 1615 | | GUID = guid, |
| | 1 | 1616 | | ExternalKey = new Guid("964c5734-ba34-43d0-8770-b22b665e9abd"), //не менять |
| | 1 | 1617 | | }); |
| | | 1618 | | |
| | 1 | 1619 | | modelBuilder.Entity<User>().HasData(new |
| | 1 | 1620 | | { |
| | 1 | 1621 | | Id = -2L, |
| | 1 | 1622 | | ContragentId = (long?)-1, |
| | 1 | 1623 | | Email = "EmbeddedAnonymUser@dd.com", |
| | 1 | 1624 | | FirstName = "Demo User", |
| | 1 | 1625 | | IsBlocked = false, |
| | 1 | 1626 | | IsContactPerson = true, |
| | 1 | 1627 | | LastName = "1", |
| | 1 | 1628 | | Login = "Demo User", |
| | 1 | 1629 | | MiddleName = "Demo User", |
| | 1 | 1630 | | Phone = "1", |
| | 1 | 1631 | | Position = "Демо УЗ, не удалять", |
| | 1 | 1632 | | IsDeleted = false, |
| | 1 | 1633 | | CreationDateTime = dt, |
| | 1 | 1634 | | ModificationDateTime = (DateTime?)null, |
| | 1 | 1635 | | GUID = guid, |
| | 1 | 1636 | | ExternalKey = new Guid("3ce2ae32-9028-46b6-afbe-ad4feec0a016"), //не менять |
| | 1 | 1637 | | }); |
| | | 1638 | | |
| | 1 | 1639 | | modelBuilder.Entity<Contragent>().HasData(new |
| | 1 | 1640 | | { |
| | 1 | 1641 | | Id = (long)-1, |
| | 1 | 1642 | | ChiefAccountant = "1", |
| | 1 | 1643 | | ContragentsKindId = (long)2, |
| | 1 | 1644 | | OwnerId = (long)-2, |
| | 1 | 1645 | | Email = "example@email.ru", |
| | 1 | 1646 | | FullName = "Общество с ограниченной ответственностью Демонстрационный контрагент", |
| | 1 | 1647 | | Inn = "2", |
| | 1 | 1648 | | JuridicAddressId = (long)-1, |
| | 1 | 1649 | | Kpp = "2", |
| | 1 | 1650 | | Ogrn = "2", |
| | 1 | 1651 | | Okato = "1", |
| | 1 | 1652 | | Okpo = "1", |
| | 1 | 1653 | | Okved = "1", |
| | 1 | 1654 | | PhoneNumber = "88008008000", |
| | 1 | 1655 | | PhysicAddressId = (long)-1, |
| | 1 | 1656 | | RecStateId = (long)2, |
| | 1 | 1657 | | ShortName = "ООО Демонстрационный контрагент", |
| | 1 | 1658 | | TaxSystemId = (long)1, |
| | 1 | 1659 | | TaxSystemCRM = "", |
| | 1 | 1660 | | WalletId = "", |
| | 1 | 1661 | | WalletShortId = "", |
| | 1 | 1662 | | WebSite = "www.example.com", |
| | 1 | 1663 | | IsDeleted = false, |
| | 1 | 1664 | | CreationDateTime = dt, |
| | 1 | 1665 | | ModificationDateTime = (DateTime?)null, |
| | 1 | 1666 | | GUID = guid, |
| | 1 | 1667 | | ExternalKey = guid, |
| | 1 | 1668 | | }); |
| | | 1669 | | |
| | 1 | 1670 | | modelBuilder.Entity<Contragent>().HasData(new |
| | 1 | 1671 | | { |
| | 1 | 1672 | | Id = (long)-2, |
| | 1 | 1673 | | ChiefAccountant = "1", |
| | 1 | 1674 | | ContragentsKindId = (long)6, |
| | 1 | 1675 | | OwnerId = (long)-1, |
| | 1 | 1676 | | Email = "service@email.ru", |
| | 1 | 1677 | | FullName = "ООО Сервисный контрагент", |
| | 1 | 1678 | | Inn = "1", |
| | 1 | 1679 | | JuridicAddressId = (long)-1, |
| | 1 | 1680 | | Kpp = "1", |
| | 1 | 1681 | | Ogrn = "1", |
| | 1 | 1682 | | Okato = "1", |
| | 1 | 1683 | | Okpo = "1", |
| | 1 | 1684 | | Okved = "1", |
| | 1 | 1685 | | PhoneNumber = "1", |
| | 1 | 1686 | | PhysicAddressId = (long)-1, |
| | 1 | 1687 | | RecStateId = (long)2, |
| | 1 | 1688 | | ShortName = "Сервисный контрагент", |
| | 1 | 1689 | | TaxSystemId = (long)1, |
| | 1 | 1690 | | TaxSystemCRM = "", |
| | 1 | 1691 | | WalletId="", |
| | 1 | 1692 | | WalletShortId = "", |
| | 1 | 1693 | | WebSite = "1", |
| | 1 | 1694 | | IsDeleted = false, |
| | 1 | 1695 | | CreationDateTime = dt, |
| | 1 | 1696 | | ModificationDateTime = (DateTime?)null, |
| | 1 | 1697 | | GUID = guid, |
| | 1 | 1698 | | ExternalKey = guid, |
| | 1 | 1699 | | }); |
| | | 1700 | | |
| | 1 | 1701 | | modelBuilder.Entity<Department>().HasData(new |
| | 1 | 1702 | | { |
| | 1 | 1703 | | Id = (long)-2, |
| | 1 | 1704 | | Name = "Сервисный департамент", |
| | 1 | 1705 | | ActualAddressId = (long)-1, |
| | 1 | 1706 | | PhoneNumber = "88008008000", |
| | 1 | 1707 | | ContragentId = (long)-2, |
| | 1 | 1708 | | Area = 100.0M, |
| | 1 | 1709 | | Kpp = "4", |
| | 1 | 1710 | | KindId = (long) 4, |
| | 1 | 1711 | | StatusId = (long) 2, |
| | 1 | 1712 | | IsDeleted = false, |
| | 1 | 1713 | | CreationDateTime = dt, |
| | 1 | 1714 | | ModificationDateTime = (DateTime?)null, |
| | 1 | 1715 | | GUID = guid, |
| | 1 | 1716 | | ExternalKey = guid |
| | 1 | 1717 | | }); |
| | | 1718 | | |
| | 1 | 1719 | | modelBuilder.Entity<Department>().HasData(new |
| | 1 | 1720 | | { |
| | 1 | 1721 | | Id = (long)-1, |
| | 1 | 1722 | | Name = "Демонстрационный магазин №1", |
| | 1 | 1723 | | ActualAddressId = (long)-1, |
| | 1 | 1724 | | PhoneNumber = "88008008000", |
| | 1 | 1725 | | ContragentId = (long)-1, |
| | 1 | 1726 | | Area = 100.0M, |
| | 1 | 1727 | | Kpp = "3", |
| | 1 | 1728 | | KindId = (long) 2, |
| | 1 | 1729 | | StatusId = (long) 2, |
| | 1 | 1730 | | IsDeleted = false, |
| | 1 | 1731 | | CreationDateTime = dt, |
| | 1 | 1732 | | ModificationDateTime = (DateTime?)null, |
| | 1 | 1733 | | GUID = guid, |
| | 1 | 1734 | | ExternalKey = guid |
| | 1 | 1735 | | }); |
| | | 1736 | | |
| | 1 | 1737 | | modelBuilder.Entity<UserDepartment>().HasData(new |
| | 1 | 1738 | | { |
| | 1 | 1739 | | Id = (long)-1, |
| | 1 | 1740 | | UserId = (long)-2, |
| | 1 | 1741 | | DepartmentId = (long)-1, |
| | 1 | 1742 | | CreationDateTime = dt, |
| | 1 | 1743 | | GUID = guid, |
| | 1 | 1744 | | }); |
| | | 1745 | | |
| | 1 | 1746 | | modelBuilder.Entity<ExchangeToken>().Property(x => x.Id).HasIdentityOptions(startValue: 1000); |
| | 1 | 1747 | | modelBuilder.Entity<ExchangeToken>().HasData(new |
| | 1 | 1748 | | { |
| | 1 | 1749 | | Id = (long)1, |
| | 1 | 1750 | | DepartmentId = (long)-2, |
| | 1 | 1751 | | Description = "Для синхронизации с CRM", |
| | 1 | 1752 | | GUID = new Guid("8eea3bee-1f37-4654-a22f-f0b18b0c4588"), //не менять |
| | 1 | 1753 | | CreationDateTime = dt, |
| | 1 | 1754 | | IsDeleted = false, |
| | 1 | 1755 | | RecStateId = (long)2, |
| | 1 | 1756 | | ModificationDateTime = (DateTime?)null |
| | 1 | 1757 | | }); |
| | | 1758 | | |
| | 1 | 1759 | | base.OnModelCreating(modelBuilder); |
| | 1 | 1760 | | } |
| | | 1761 | | |
| | | 1762 | | public void NormalizeStringValues() |
| | 0 | 1763 | | { |
| | 0 | 1764 | | var entries = base.ChangeTracker.Entries().Where(x => x.Entity is BaseRecord && (x.State == EntityState.Modi |
| | 0 | 1765 | | foreach (var entry in entries) |
| | 0 | 1766 | | { |
| | 0 | 1767 | | var propertyValues = entry.CurrentValues.Properties.Where(p => p.ClrType == typeof(string)); |
| | | 1768 | | |
| | 0 | 1769 | | foreach (var prop in propertyValues) |
| | 0 | 1770 | | { |
| | 0 | 1771 | | var val = (entry.CurrentValues[prop.Name]?.ToString() ?? string.Empty).Trim(); |
| | | 1772 | | |
| | 0 | 1773 | | if ((entry.Entity as BaseRecord).IsDeleted) |
| | 0 | 1774 | | { |
| | 0 | 1775 | | val = val.Corrupt((entry.Entity as BaseRecord).Id); |
| | 0 | 1776 | | } |
| | | 1777 | | else |
| | 0 | 1778 | | { |
| | 0 | 1779 | | val = val.NormalizeName(); |
| | 0 | 1780 | | } |
| | | 1781 | | |
| | 0 | 1782 | | entry.CurrentValues[prop.Name] = val; |
| | 0 | 1783 | | } |
| | 0 | 1784 | | } |
| | 0 | 1785 | | } |
| | | 1786 | | |
| | | 1787 | | public void NormalizeStringValues(EntityEntry entry, ITrackableRecord trackable) |
| | 42022 | 1788 | | { |
| | 610976 | 1789 | | var propertyValues = entry.CurrentValues.Properties.Where(p => p.ClrType == typeof(string)); |
| | | 1790 | | |
| | 216396 | 1791 | | foreach (var prop in propertyValues) |
| | 45165 | 1792 | | { |
| | 45165 | 1793 | | var val = (entry.CurrentValues[prop.Name]?.ToString() ?? string.Empty).Trim(); |
| | | 1794 | | |
| | 45165 | 1795 | | if (trackable.IsDeleted) |
| | 57 | 1796 | | { |
| | 57 | 1797 | | val = val.Corrupt(trackable.Id); |
| | 57 | 1798 | | } |
| | | 1799 | | else |
| | 45108 | 1800 | | { |
| | 45108 | 1801 | | val = val.NormalizeName(); |
| | 45108 | 1802 | | } |
| | | 1803 | | |
| | 45165 | 1804 | | entry.CurrentValues[prop.Name] = val; |
| | 45165 | 1805 | | } |
| | 42022 | 1806 | | } |
| | | 1807 | | |
| | | 1808 | | public Task<int> SaveChangesAsync(long userId) |
| | 9514 | 1809 | | { |
| | 9514 | 1810 | | var eventList = new List<Event>(); |
| | 112592 | 1811 | | foreach (var entity in ChangeTracker.Entries() |
| | 5906803 | 1812 | | .Where(x => x.State == EntityState.Added || x.State == EntityState.Modified || x.State == EntityState.De |
| | 42025 | 1813 | | { |
| | 42025 | 1814 | | var trackable = entity.Entity as ITrackableRecord; |
| | 0 | 1815 | | if(trackable == null) continue; |
| | | 1816 | | |
| | 42025 | 1817 | | switch(entity.State) |
| | | 1818 | | { |
| | | 1819 | | case EntityState.Added: |
| | 38693 | 1820 | | trackable.CreatedByUserId = userId; |
| | 38693 | 1821 | | trackable.CreationDateTime = DateTime.UtcNow; |
| | 38693 | 1822 | | NormalizeStringValues(entity, trackable); |
| | 38693 | 1823 | | break; |
| | | 1824 | | |
| | | 1825 | | case EntityState.Modified: |
| | 3329 | 1826 | | trackable.ModifiedByUserId = userId; |
| | 3329 | 1827 | | trackable.ModificationDateTime = DateTime.UtcNow; |
| | 3329 | 1828 | | NormalizeStringValues(entity, trackable); |
| | 3329 | 1829 | | break; |
| | | 1830 | | } |
| | 42025 | 1831 | | eventList.Add(GenerateEvent(entity, userId, trackable)); |
| | 42025 | 1832 | | } |
| | | 1833 | | |
| | 9514 | 1834 | | AddRange(eventList); |
| | 9514 | 1835 | | return base.SaveChangesAsync(); |
| | 9514 | 1836 | | } |
| | | 1837 | | |
| | | 1838 | | // закешированные статусы записей, для ускорения создания логов |
| | | 1839 | | // заполняются и используются в методе GenerateEvent |
| | 0 | 1840 | | RecordsState recordsStateEmpty = null; |
| | 0 | 1841 | | EventsKind eventsKindCreate = null; |
| | 0 | 1842 | | EventsKind eventsKindUpdate = null; |
| | 0 | 1843 | | EventsKind eventsKindDelete = null; |
| | 0 | 1844 | | User currentUser = null; |
| | | 1845 | | //*** |
| | | 1846 | | |
| | | 1847 | | // Игнорируемые при записи логов свойства сущностей |
| | 0 | 1848 | | string[] ignoredPropertiesAdded = new string[] { "Id", "ModifiedByUserId", "ModificationDateTime" }; |
| | 0 | 1849 | | string[] ignoredPropertiesDeleted = new string[] { "Id", "ModifiedByUserId", "ModificationDateTime", "CreatedByU |
| | 0 | 1850 | | string[] ignoredPropertiesUpdated = new string[] { "CreatedByUserId", "CreationDateTime" }; |
| | | 1851 | | //*** |
| | | 1852 | | |
| | | 1853 | | Dictionary<string, string> GetPropertiesValues(PropertyValues values, string[] ignoredProperties) |
| | 45354 | 1854 | | { |
| | 45354 | 1855 | | return values.Properties |
| | 682420 | 1856 | | .Where(x => !ignoredProperties.Contains(x.Name)) |
| | 1062952 | 1857 | | .ToDictionary(x => x.Name, x => (values[x.Name])?.ToString()); |
| | 45354 | 1858 | | } |
| | | 1859 | | |
| | | 1860 | | private Event GenerateEvent(EntityEntry entity, long userId, ITrackableRecord trackable) |
| | 42025 | 1861 | | { |
| | 42025 | 1862 | | recordsStateEmpty ??= refRecordsState.FirstOrDefault(x => x.Id == (int)RecordState.Empty); |
| | 42025 | 1863 | | currentUser ??= Users.FirstOrDefault(x => x.Id == userId); |
| | | 1864 | | |
| | | 1865 | | //генерируем событие и записываем туда json данных, которые при создании пишем в БД. Либо json данных, котор |
| | 42025 | 1866 | | var event_ = new Event() |
| | 42025 | 1867 | | { |
| | 42025 | 1868 | | CreatedByUserId = userId, |
| | 42025 | 1869 | | CreationDateTime = DateTime.UtcNow, |
| | 42025 | 1870 | | Entity = entity.Entity.GetType().Name, |
| | 42025 | 1871 | | RecState = recordsStateEmpty, |
| | 42025 | 1872 | | User = currentUser |
| | 42025 | 1873 | | }; |
| | 42025 | 1874 | | event_.RecordGuid = trackable.GUID; |
| | | 1875 | | |
| | 42025 | 1876 | | dynamic json = null; |
| | 42025 | 1877 | | switch(entity.State) |
| | | 1878 | | { |
| | | 1879 | | case EntityState.Added: |
| | 38693 | 1880 | | eventsKindCreate ??= refEventsKind.FirstOrDefault(x => x.Id == (int)EventKind.Create); |
| | 38693 | 1881 | | event_.EventsKind = eventsKindCreate; |
| | 38693 | 1882 | | json = new |
| | 38693 | 1883 | | { |
| | 38693 | 1884 | | New = GetPropertiesValues(entity.CurrentValues, ignoredPropertiesAdded) |
| | 38693 | 1885 | | }; |
| | 38693 | 1886 | | break; |
| | | 1887 | | |
| | | 1888 | | case EntityState.Deleted: |
| | 3 | 1889 | | eventsKindDelete ??= refEventsKind.FirstOrDefault(x => x.Id == (int)EventKind.Delete); |
| | 3 | 1890 | | event_.EventsKind = eventsKindDelete; |
| | 3 | 1891 | | json = new |
| | 3 | 1892 | | { |
| | 3 | 1893 | | Old = GetPropertiesValues(entity.OriginalValues, ignoredPropertiesDeleted) |
| | 3 | 1894 | | }; |
| | 3 | 1895 | | break; |
| | | 1896 | | |
| | | 1897 | | case EntityState.Modified: |
| | 3329 | 1898 | | eventsKindUpdate ??= refEventsKind.FirstOrDefault(x => x.Id == (int)EventKind.Update); |
| | 3329 | 1899 | | eventsKindDelete ??= refEventsKind.FirstOrDefault(x => x.Id == (int)EventKind.Delete); |
| | | 1900 | | |
| | 3329 | 1901 | | event_.EventsKind = trackable.IsDeleted ? eventsKindDelete : eventsKindUpdate; |
| | 3329 | 1902 | | var currentJson = GetPropertiesValues(entity.CurrentValues, ignoredPropertiesUpdated); |
| | 3329 | 1903 | | var originJson = GetPropertiesValues(entity.OriginalValues, ignoredPropertiesUpdated); |
| | 3329 | 1904 | | json = new { Old = originJson, New = currentJson }; |
| | 3329 | 1905 | | break; |
| | | 1906 | | } |
| | 42025 | 1907 | | event_.ReasonJson = JsonSerializer.Serialize(json, json.GetType(), |
| | 42025 | 1908 | | new JsonSerializerOptions() { Encoder = System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.U |
| | | 1909 | | |
| | 42025 | 1910 | | return event_; |
| | 42025 | 1911 | | } |
| | | 1912 | | |
| | | 1913 | | /* |
| | | 1914 | | public Task<int> SaveChangesAsync(long userId) |
| | | 1915 | | { |
| | | 1916 | | NormalizeStringValues(); |
| | | 1917 | | |
| | | 1918 | | var eventList = new List<Event>(); |
| | | 1919 | | var entries = base.ChangeTracker.Entries().Where(x => (x.Entity is BaseRecord || x.Entity is RelationRecord) |
| | | 1920 | | foreach (var entity in entries) |
| | | 1921 | | { |
| | | 1922 | | if (entity.Entity is BaseRecord) |
| | | 1923 | | { |
| | | 1924 | | (entity.Entity as BaseRecord).CreatedByUserId = userId; |
| | | 1925 | | (entity.Entity as BaseRecord).CreationDateTime = DateTime.UtcNow; |
| | | 1926 | | } |
| | | 1927 | | if (entity.Entity is RelationRecord) |
| | | 1928 | | { |
| | | 1929 | | (entity.Entity as RelationRecord).CreatedByUserId = userId; |
| | | 1930 | | (entity.Entity as RelationRecord).CreationDateTime = DateTime.UtcNow; |
| | | 1931 | | } |
| | | 1932 | | if (entity.Entity.GetType().Name != "Event" && entity.Entity.GetType().Name != "JobLogger") |
| | | 1933 | | { |
| | | 1934 | | eventList.Add(GenerateEvent(entity, userId)); |
| | | 1935 | | } |
| | | 1936 | | } |
| | | 1937 | | |
| | | 1938 | | entries = base.ChangeTracker.Entries().Where(x => x.Entity is BaseRecord && x.State == EntityState.Modified) |
| | | 1939 | | foreach (var entity in entries) |
| | | 1940 | | { |
| | | 1941 | | (entity.Entity as BaseRecord).ModifiedByUserId = userId; |
| | | 1942 | | (entity.Entity as BaseRecord).ModificationDateTime = DateTime.UtcNow; |
| | | 1943 | | if (entity.Entity.GetType().Name != "Event" && entity.Entity.GetType().Name != "JobLogger") |
| | | 1944 | | { |
| | | 1945 | | eventList.Add(GenerateEvent(entity, userId)); |
| | | 1946 | | } |
| | | 1947 | | } |
| | | 1948 | | |
| | | 1949 | | entries = base.ChangeTracker.Entries().Where(x => x.Entity is RelationRecord && x.State == EntityState.Delet |
| | | 1950 | | foreach (var entity in entries) |
| | | 1951 | | { |
| | | 1952 | | if (entity.Entity.GetType().Name != "Event" && entity.Entity.GetType().Name != "JobLogger") |
| | | 1953 | | { |
| | | 1954 | | eventList.Add(GenerateEvent(entity, userId)); |
| | | 1955 | | } |
| | | 1956 | | } |
| | | 1957 | | |
| | | 1958 | | AddRange(eventList); |
| | | 1959 | | return base.SaveChangesAsync(); |
| | | 1960 | | } |
| | | 1961 | | */ |
| | | 1962 | | |
| | | 1963 | | public Task<int> SaveChangesAsyncFast(long userId) |
| | 184 | 1964 | | { |
| | 184 | 1965 | | return base.SaveChangesAsync(); |
| | 184 | 1966 | | } |
| | | 1967 | | |
| | | 1968 | | /* |
| | | 1969 | | private Event GenerateEvent(Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry entity, long userId) |
| | | 1970 | | { |
| | | 1971 | | //генерируем событие и записываем туда json данных, которые при создании пишем в БД. Либо json данных, котор |
| | | 1972 | | var event_ = new Event() |
| | | 1973 | | { |
| | | 1974 | | CreatedByUserId = userId, |
| | | 1975 | | CreationDateTime = DateTime.UtcNow, |
| | | 1976 | | Entity = entity.Entity.GetType().Name, |
| | | 1977 | | RecState = refRecordsState.FirstOrDefault(x => x.Id == (int)RecordState.Empty), |
| | | 1978 | | User = Users.FirstOrDefault(x => x.Id == userId) |
| | | 1979 | | }; |
| | | 1980 | | if(entity.Entity is RelationRecord) |
| | | 1981 | | { |
| | | 1982 | | event_.RecordGuid = (entity.Entity as RelationRecord).GUID; |
| | | 1983 | | } |
| | | 1984 | | else if(entity.Entity is ExternalRecord) |
| | | 1985 | | { |
| | | 1986 | | event_.RecordGuid = (entity.Entity as ExternalRecord).GUID; |
| | | 1987 | | } |
| | | 1988 | | else |
| | | 1989 | | { |
| | | 1990 | | event_.RecordGuid = Guid.Empty; |
| | | 1991 | | } |
| | | 1992 | | |
| | | 1993 | | if (entity.State == EntityState.Added) |
| | | 1994 | | { |
| | | 1995 | | event_.EventsKind = refEventsKind.FirstOrDefault(x => x.Id == (int)EventKind.Create); |
| | | 1996 | | var json = new |
| | | 1997 | | { |
| | | 1998 | | New = entity.CurrentValues.Properties |
| | | 1999 | | .Where(x => x.Name != "Id" && x.Name != "ModifiedByUserId" && x.Name != "ModificationDateTime") |
| | | 2000 | | .ToDictionary(x => x.Name, x => (entity.CurrentValues[x.Name])?.ToString()) |
| | | 2001 | | }; |
| | | 2002 | | event_.ReasonJson = JsonSerializer.Serialize(json, json.GetType(), |
| | | 2003 | | new JsonSerializerOptions() { Encoder = System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Te |
| | | 2004 | | } |
| | | 2005 | | else if (entity.State == EntityState.Deleted) |
| | | 2006 | | { |
| | | 2007 | | event_.EventsKind = refEventsKind.FirstOrDefault(x => x.Id == (int)EventKind.Delete); |
| | | 2008 | | var json = new |
| | | 2009 | | { |
| | | 2010 | | Old = entity.OriginalValues.Properties |
| | | 2011 | | .Where(x => x.Name != "CreatedByUserId" && x.Name != "CreationDateTime") |
| | | 2012 | | .ToDictionary(x => x.Name, x => (entity.OriginalValues[x.Name])?.ToString()) |
| | | 2013 | | }; |
| | | 2014 | | event_.ReasonJson = JsonSerializer.Serialize(json, json.GetType(), |
| | | 2015 | | new JsonSerializerOptions() { Encoder = System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Te |
| | | 2016 | | } |
| | | 2017 | | else |
| | | 2018 | | { |
| | | 2019 | | if (entity.CurrentValues.GetValue<bool>("IsDeleted")) |
| | | 2020 | | event_.EventsKind = refEventsKind.FirstOrDefault(x => x.Id == (int)EventKind.Delete); |
| | | 2021 | | else |
| | | 2022 | | event_.EventsKind = refEventsKind.FirstOrDefault(x => x.Id == (int)EventKind.Update); |
| | | 2023 | | var currentJson = entity.CurrentValues.Properties |
| | | 2024 | | .Where(x => x.Name != "CreatedByUserId" && x.Name != "CreationDateTime") |
| | | 2025 | | .ToDictionary(x => x.Name, x => (entity.CurrentValues[x.Name])?.ToString()); |
| | | 2026 | | var originJson = entity.OriginalValues.Properties |
| | | 2027 | | .Where(x => x.Name != "CreatedByUserId" && x.Name != "CreationDateTime") |
| | | 2028 | | .ToDictionary(x => x.Name, x => (entity.OriginalValues[x.Name])?.ToString()); |
| | | 2029 | | var json = new { Old = originJson, New = currentJson }; |
| | | 2030 | | event_.ReasonJson = JsonSerializer.Serialize(json, json.GetType(), |
| | | 2031 | | new JsonSerializerOptions() { Encoder = System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Te |
| | | 2032 | | } |
| | | 2033 | | return event_; |
| | | 2034 | | } |
| | | 2035 | | */ |
| | | 2036 | | |
| | | 2037 | | /// <summary> |
| | | 2038 | | /// Задачи по выгрузке изображений товаров |
| | | 2039 | | /// </summary> |
| | 0 | 2040 | | public DbSet<DownloadGoodsImagesTask> DownloadGoodsImagesTasks { get; set; } |
| | | 2041 | | |
| | | 2042 | | /// <summary> |
| | | 2043 | | /// Штрихкоды |
| | | 2044 | | /// </summary> |
| | 260 | 2045 | | public DbSet<BarCode> BarCodes { get; set; } |
| | | 2046 | | |
| | | 2047 | | /// <summary> |
| | | 2048 | | /// Банковские счета |
| | | 2049 | | /// </summary> |
| | 276 | 2050 | | public DbSet<BankAccount> BankAccounts { get; set; } |
| | | 2051 | | |
| | | 2052 | | /// <summary> |
| | | 2053 | | /// Брэнды |
| | | 2054 | | /// </summary> |
| | 559 | 2055 | | public DbSet<Brand> Brands { get; set; } |
| | | 2056 | | |
| | | 2057 | | /// <summary> |
| | | 2058 | | /// Дерево категорий товаров |
| | | 2059 | | /// </summary> |
| | 436 | 2060 | | public DbSet<Category> Categories { get; set; } |
| | | 2061 | | |
| | | 2062 | | |
| | | 2063 | | /// <summary> |
| | | 2064 | | /// Контрагенты |
| | | 2065 | | /// </summary> |
| | 2135 | 2066 | | public DbSet<Contragent> Contragents { get; set; } |
| | | 2067 | | |
| | | 2068 | | |
| | | 2069 | | /// <summary> |
| | | 2070 | | /// Страны |
| | | 2071 | | /// </summary> |
| | 232 | 2072 | | public DbSet<Country> refCountries { get; set; } |
| | | 2073 | | |
| | | 2074 | | |
| | | 2075 | | /// <summary> |
| | | 2076 | | /// Подразделения |
| | | 2077 | | /// </summary> |
| | 2272 | 2078 | | public DbSet<Department> Departments { get; set; } |
| | | 2079 | | |
| | | 2080 | | |
| | | 2081 | | /// <summary> |
| | | 2082 | | /// Журнал событий |
| | | 2083 | | /// </summary> |
| | 0 | 2084 | | public DbSet<Event> Events { get; set; } |
| | | 2085 | | |
| | | 2086 | | |
| | | 2087 | | /// <summary> |
| | | 2088 | | /// Товары |
| | | 2089 | | /// </summary> |
| | 913 | 2090 | | public DbSet<Good> Goods { get; set; } |
| | | 2091 | | |
| | | 2092 | | |
| | | 2093 | | /// <summary> |
| | | 2094 | | /// Инциденты |
| | | 2095 | | /// </summary> |
| | 223 | 2096 | | public DbSet<Incident> Incidents { get; set; } |
| | | 2097 | | |
| | | 2098 | | |
| | | 2099 | | /// <summary> |
| | | 2100 | | /// Движения товаров (заголовки) |
| | | 2101 | | /// </summary> |
| | 1850 | 2102 | | public DbSet<Movement> Movements { get; set; } |
| | | 2103 | | |
| | | 2104 | | /// <summary> |
| | | 2105 | | /// Комментарии к документам |
| | | 2106 | | /// </summary> |
| | 0 | 2107 | | public DbSet<MovementNote> MovementNotes { get; set; } |
| | | 2108 | | |
| | | 2109 | | /// <summary> |
| | | 2110 | | /// Движения товаров (товары) |
| | | 2111 | | /// </summary> |
| | 284 | 2112 | | public DbSet<MovementItem> MovementItems { get; set; } |
| | | 2113 | | |
| | | 2114 | | |
| | | 2115 | | /// <summary> |
| | | 2116 | | /// Фото |
| | | 2117 | | /// </summary> |
| | 0 | 2118 | | public DbSet<Photo> Photos { get; set; } |
| | | 2119 | | |
| | | 2120 | | |
| | | 2121 | | /// <summary> |
| | | 2122 | | /// Текущие цены |
| | | 2123 | | /// </summary> |
| | 0 | 2124 | | public DbSet<PriceCurrent> PricesCurrent { get; set; } |
| | | 2125 | | |
| | | 2126 | | |
| | | 2127 | | /// <summary> |
| | | 2128 | | /// Журнал переоценки |
| | | 2129 | | /// </summary> |
| | 773 | 2130 | | public DbSet<PriceTrend> PricesTrend { get; set; } |
| | | 2131 | | |
| | | 2132 | | /// <summary> |
| | | 2133 | | /// Промо заявки |
| | | 2134 | | /// </summary> |
| | 0 | 2135 | | public DbSet<PromoBid> PromoBids { get; set; } |
| | | 2136 | | |
| | | 2137 | | |
| | | 2138 | | /// <summary> |
| | | 2139 | | /// Промо предложения |
| | | 2140 | | /// </summary> |
| | 0 | 2141 | | public DbSet<PromoOffer> PromoOffers { get; set; } |
| | | 2142 | | |
| | | 2143 | | |
| | | 2144 | | |
| | | 2145 | | /// <summary> |
| | | 2146 | | /// Остатки товара |
| | | 2147 | | /// </summary> |
| | 1035 | 2148 | | public DbSet<Rest> Rests { get; set; } |
| | | 2149 | | |
| | | 2150 | | |
| | | 2151 | | /// <summary> |
| | | 2152 | | /// Реестр договоров поставки |
| | | 2153 | | /// </summary> |
| | 2560 | 2154 | | public DbSet<SupplyContract> SupplyContract { get; set; } |
| | | 2155 | | |
| | | 2156 | | |
| | | 2157 | | /// <summary> |
| | | 2158 | | /// Пользователи |
| | | 2159 | | /// </summary> |
| | 3618 | 2160 | | public DbSet<User> Users { get; set; } |
| | | 2161 | | |
| | | 2162 | | |
| | | 2163 | | /// <summary> |
| | | 2164 | | /// Уведомления |
| | | 2165 | | /// </summary> |
| | 966 | 2166 | | public DbSet<Notification> Notifications { get; set; } |
| | | 2167 | | |
| | | 2168 | | |
| | | 2169 | | /// <summary> |
| | | 2170 | | /// Атрибуты товар - склад |
| | | 2171 | | /// </summary> |
| | 0 | 2172 | | public DbSet<DepartmentGoodSetting> DepartmentGoodSetting { get; set; } |
| | | 2173 | | |
| | | 2174 | | /// <summary> |
| | | 2175 | | /// Торговый коэффициент склада |
| | | 2176 | | /// </summary> |
| | 248 | 2177 | | public DbSet<DepartmentCategoryRatio> DepartmentCategoryRatio { get; set; } |
| | | 2178 | | |
| | | 2179 | | |
| | | 2180 | | /// <summary> |
| | | 2181 | | /// Кластеры |
| | | 2182 | | /// </summary> |
| | 1780 | 2183 | | public DbSet<Cluster> Clusters { get; set; } |
| | | 2184 | | |
| | | 2185 | | |
| | | 2186 | | /// <summary> |
| | | 2187 | | /// Соеденение коммуникаций и пользователей |
| | | 2188 | | /// </summary> |
| | 966 | 2189 | | public DbSet<NotificationUsers> NotificationUsers { get; set; } |
| | | 2190 | | |
| | | 2191 | | /// <summary> |
| | | 2192 | | /// Статусы подразделений |
| | | 2193 | | /// </summary> |
| | 409 | 2194 | | public DbSet<DepartmentsStatus> refDepartmentsStatus { get; set; } |
| | | 2195 | | |
| | | 2196 | | /// <summary> |
| | | 2197 | | /// Виды подразделений |
| | | 2198 | | /// </summary> |
| | 594 | 2199 | | public DbSet<DepartmentsKind> refDepartmentsKind { get; set; } |
| | | 2200 | | |
| | | 2201 | | /// <summary> |
| | | 2202 | | /// Адреса |
| | | 2203 | | /// </summary> |
| | 1929 | 2204 | | public DbSet<Address> Address { get; set; } |
| | | 2205 | | |
| | | 2206 | | /// <summary> |
| | | 2207 | | /// Статусы инцидентов |
| | | 2208 | | /// </summary> |
| | 222 | 2209 | | public DbSet<IncidentsStatus> refIncidentsStatus { get; set; } |
| | | 2210 | | |
| | | 2211 | | /// <summary> |
| | | 2212 | | /// Виды инцидентов |
| | | 2213 | | /// </summary> |
| | 222 | 2214 | | public DbSet<IncidentsKind> refIncidentsKind { get; set; } |
| | | 2215 | | |
| | | 2216 | | /// <summary> |
| | | 2217 | | /// Тип документа |
| | | 2218 | | /// </summary> |
| | 566 | 2219 | | public DbSet<MovementType> refMovementType { get; set; } |
| | | 2220 | | |
| | | 2221 | | /// <summary> |
| | | 2222 | | /// Статус документа |
| | | 2223 | | /// </summary> |
| | 469 | 2224 | | public DbSet<MovementStatus> refMovementStatus { get; set; } |
| | | 2225 | | |
| | | 2226 | | /// <summary> |
| | | 2227 | | /// Справочник валют |
| | | 2228 | | /// </summary> |
| | 0 | 2229 | | public DbSet<Currency> refCurrency { get; set; } |
| | | 2230 | | /// <summary> |
| | | 2231 | | /// Роли |
| | | 2232 | | /// </summary> |
| | 223 | 2233 | | public DbSet<Roles> Roles { get; set; } |
| | | 2234 | | |
| | | 2235 | | /// <summary> |
| | | 2236 | | /// Методы доступные для ролей |
| | | 2237 | | /// </summary> |
| | 0 | 2238 | | public DbSet<Methods> Methods { get; set; } |
| | | 2239 | | |
| | 773 | 2240 | | public DbSet<TaxSystem> TaxSystems { get; set; } |
| | | 2241 | | |
| | | 2242 | | /// <summary> |
| | | 2243 | | /// Аплоады |
| | | 2244 | | /// </summary> |
| | 0 | 2245 | | public DbSet<Upload> Uploads { get; set; } |
| | | 2246 | | |
| | | 2247 | | /// <summary> |
| | | 2248 | | /// Статусы загрузок |
| | | 2249 | | /// </summary> |
| | | 2250 | | // public DbSet<UploadsStatus> UploadsStatus { get; set; } |
| | | 2251 | | |
| | | 2252 | | |
| | | 2253 | | /// <summary> |
| | | 2254 | | /// Аплоады |
| | | 2255 | | /// </summary> |
| | 0 | 2256 | | public DbSet<UploadItem> UploadItems { get; set; } |
| | | 2257 | | |
| | | 2258 | | /// <summary> |
| | | 2259 | | /// Виды НДС |
| | | 2260 | | /// </summary> |
| | 590 | 2261 | | public DbSet<VatsKind> refVatsKind { get; set; } |
| | | 2262 | | /// <summary> |
| | | 2263 | | /// Виды измерений |
| | | 2264 | | /// </summary> |
| | 600 | 2265 | | public DbSet<UnitsKind> refUnitsKind { get; set; } |
| | | 2266 | | /// <summary> |
| | | 2267 | | /// Типы состояний записи |
| | | 2268 | | /// </summary> |
| | 3700 | 2269 | | public DbSet<RecordsState> refRecordsState { get; set; } |
| | | 2270 | | /// <summary> |
| | | 2271 | | /// Типы уведомлений |
| | | 2272 | | /// </summary> |
| | 966 | 2273 | | public DbSet<NotificationsType> refNotificationsType { get; set; } |
| | | 2274 | | /// <summary> |
| | | 2275 | | /// Статусы уведомлений |
| | | 2276 | | /// </summary> |
| | 966 | 2277 | | public DbSet<NotificationsStatus> refNotificationsStatus { get; set; } |
| | | 2278 | | /// <summary> |
| | | 2279 | | /// Виды событий |
| | | 2280 | | /// </summary> |
| | 892 | 2281 | | public DbSet<EventsKind> refEventsKind { get; set; } |
| | | 2282 | | /// <summary> |
| | | 2283 | | /// Виды контрагентов |
| | | 2284 | | /// </summary> |
| | 794 | 2285 | | public DbSet<ContragentsKind> refContragentsKind { get; set; } |
| | | 2286 | | /// <summary> |
| | | 2287 | | /// Журнал перехода документов между статусами |
| | | 2288 | | /// </summary> |
| | 967 | 2289 | | public DbSet<MovementStatusJournal> MovementStatusJournals { get; set; } |
| | | 2290 | | |
| | | 2291 | | /// <summary> |
| | | 2292 | | /// Рабочий график системы |
| | | 2293 | | /// </summary> |
| | 655 | 2294 | | public DbSet<WorkSchedule> WorkScheduler { get; set; } |
| | | 2295 | | |
| | | 2296 | | |
| | | 2297 | | /// <summary> |
| | | 2298 | | /// История платежей |
| | | 2299 | | /// </summary> |
| | 263 | 2300 | | public DbSet<WalletTransaction> WalletTransactions { get; set; } |
| | | 2301 | | /// <summary> |
| | | 2302 | | /// Статусы платежа |
| | | 2303 | | /// </summary> |
| | 0 | 2304 | | public DbSet<WalletTransactionStatus> refWalletTransactionStatuses { get; set; } |
| | | 2305 | | |
| | | 2306 | | /// <summary> |
| | | 2307 | | /// Владельцы статусов документов |
| | | 2308 | | /// </summary> |
| | 0 | 2309 | | public DbSet<MovementStatusOwner> MovementStatusOwners { get; set; } |
| | | 2310 | | |
| | | 2311 | | /// <summary> |
| | | 2312 | | /// Маршрутизация документов в системе |
| | | 2313 | | /// </summary> |
| | 887 | 2314 | | public DbSet<MovementStatusRoute> MovementStatusRoutes { get; set; } |
| | | 2315 | | |
| | | 2316 | | /// <summary> |
| | | 2317 | | /// Действия доступные на статусе документа |
| | | 2318 | | /// </summary> |
| | 342 | 2319 | | public DbSet<MovementRouteAction> MovementRouteActions { get; set; } |
| | | 2320 | | |
| | | 2321 | | /// <summary> |
| | | 2322 | | /// Доступ к контроллам на фронте |
| | | 2323 | | /// </summary> |
| | 233 | 2324 | | public DbSet<ControlAccess> ControlsAccess { get; set; } |
| | | 2325 | | |
| | | 2326 | | /// <summary> |
| | | 2327 | | /// Детали журнала переоценки |
| | | 2328 | | /// </summary> |
| | 957 | 2329 | | public DbSet<PriceTrendDetail> PriceTrendDetails { get; set; } |
| | | 2330 | | |
| | | 2331 | | /// <summary> |
| | | 2332 | | /// Логирование работы джобов |
| | | 2333 | | /// </summary> |
| | 0 | 2334 | | public DbSet<JobLogger> JobLoggers { get; set; } |
| | | 2335 | | |
| | | 2336 | | /// <summary> |
| | | 2337 | | /// Цвета скидок |
| | | 2338 | | /// </summary> |
| | 333 | 2339 | | public DbSet<DiscountColor> DiscountColors { get; set; } |
| | | 2340 | | |
| | | 2341 | | /// <summary> |
| | | 2342 | | /// Токены для обмена с внешними системами |
| | | 2343 | | /// </summary> |
| | 263 | 2344 | | public DbSet<ExchangeToken> ExchangeTokens { get; set; } |
| | | 2345 | | /// <summary> |
| | | 2346 | | /// Письма для отправки джобом |
| | | 2347 | | /// </summary> |
| | 781 | 2348 | | public DbSet<Email> Emails { get; set; } |
| | | 2349 | | |
| | | 2350 | | /// <summary> |
| | | 2351 | | /// Зарезервированные остатки |
| | | 2352 | | /// </summary> |
| | 293 | 2353 | | public DbSet<RestHold> RestHolds { get; set; } |
| | | 2354 | | /// <summary> |
| | | 2355 | | /// Конфигурации приложения |
| | | 2356 | | /// </summary> |
| | 247 | 2357 | | public DbSet<Configuration> sysConfigurations { get; set; } |
| | | 2358 | | /// <summary> |
| | | 2359 | | /// Доступы для фронта |
| | | 2360 | | /// </summary> |
| | 227 | 2361 | | public DbSet<FrontAction> FrontActions { get; set; } |
| | | 2362 | | /// <summary> |
| | | 2363 | | /// Типы данных для конфигураций приложения |
| | | 2364 | | /// </summary> |
| | 236 | 2365 | | public DbSet<ConfigurationsDataType> ConfigurationsDataTypes { get; set; } |
| | | 2366 | | /// <summary> |
| | | 2367 | | /// Ярлыки товаров |
| | | 2368 | | /// </summary> |
| | 239 | 2369 | | public DbSet<GoodLabel> GoodLabels { get; set; } |
| | | 2370 | | |
| | | 2371 | | /// <summary> |
| | | 2372 | | /// Связка товаров со штрихкодами |
| | | 2373 | | /// </summary> |
| | 0 | 2374 | | public DbSet<GoodBarcode> GoodBarcodes { get; set; } |
| | | 2375 | | |
| | | 2376 | | /// <summary> |
| | | 2377 | | /// Заявки анонимных пользователей |
| | | 2378 | | /// </summary> |
| | 334 | 2379 | | public DbSet<AnonymousMovement> AnonymousMovements { get; set; } |
| | | 2380 | | /// <summary> |
| | | 2381 | | /// Уведомления Telegram |
| | | 2382 | | /// </summary> |
| | 781 | 2383 | | public DbSet<TelegramNotification> TelegramNotifications { get; set; } |
| | | 2384 | | |
| | | 2385 | | /// <summary> |
| | | 2386 | | /// Типы доставки |
| | | 2387 | | /// </summary> |
| | 635 | 2388 | | public DbSet<DeliveryType> DeliveryTypes { get; set; } |
| | | 2389 | | /// <summary> |
| | | 2390 | | /// Типы стоимости доставки |
| | | 2391 | | /// </summary> |
| | 0 | 2392 | | public DbSet<DeliveryCostType> DeliveryCostTypes { get; set; } |
| | | 2393 | | /// <summary> |
| | | 2394 | | /// История отправки СМС |
| | | 2395 | | /// </summary> |
| | 0 | 2396 | | public DbSet<SmsHistory> SmsHistory { get; set; } |
| | | 2397 | | /// <summary> |
| | | 2398 | | /// История отправки Email через EmailGate |
| | | 2399 | | /// </summary> |
| | 0 | 2400 | | public DbSet<EmailGateHistory> EmailGateHistory { get; set; } |
| | | 2401 | | |
| | | 2402 | | /// <summary> |
| | | 2403 | | /// Вложения в документ |
| | | 2404 | | /// </summary> |
| | 0 | 2405 | | public DbSet<MovementAttachment> MovementAttachments { get; set; } |
| | | 2406 | | } |
| | | 2407 | | } |