feat(esppScheduleSync): доделал метод ParseStrToEsppObject

This commit is contained in:
Mikhail Trubnikov
2023-11-27 09:27:20 +10:00
parent 4a0433a389
commit 2fde70c9a2
6 changed files with 2816 additions and 96 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,32 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace PARR.DAL.Migrations
{
/// <inheritdoc />
public partial class TblEsppSchTypeScheduleFixDescription : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.UpdateData(
table: "EsppSchTypeSchedules",
keyColumn: "Id",
keyValue: 2,
column: "Description",
value: "Еженедельно");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.UpdateData(
table: "EsppSchTypeSchedules",
keyColumn: "Id",
keyValue: 2,
column: "Description",
value: "Еженежельно");
}
}
}

View File

@@ -859,7 +859,7 @@ namespace PARR.DAL.Migrations
new
{
Id = 2,
Description = "Еженежельно",
Description = "Еженедельно",
Name = "Weekly"
},
new