diff --git a/src/ReC.Application/Common/Dto/DtoMappingProfile.cs b/src/ReC.Application/Common/Dto/DtoMappingProfile.cs index ff4cc52..d132ee6 100644 --- a/src/ReC.Application/Common/Dto/DtoMappingProfile.cs +++ b/src/ReC.Application/Common/Dto/DtoMappingProfile.cs @@ -17,7 +17,7 @@ public class DtoMappingProfile : AutoMapper.Profile CreateMap(); CreateMap(); - CreateMap(); + CreateMap(); CreateMap(); } } diff --git a/src/ReC.Domain/Entities/RecResultView.cs b/src/ReC.Domain/Entities/ResultView.cs similarity index 95% rename from src/ReC.Domain/Entities/RecResultView.cs rename to src/ReC.Domain/Entities/ResultView.cs index 0bb1047..bd310e2 100644 --- a/src/ReC.Domain/Entities/RecResultView.cs +++ b/src/ReC.Domain/Entities/ResultView.cs @@ -1,6 +1,6 @@ namespace ReC.Domain.Entities; -public class RecResultView +public class ResultView { public long Id { get; set; } diff --git a/src/ReC.Infrastructure/RecDbContext.cs b/src/ReC.Infrastructure/RecDbContext.cs index 2a161fe..3f3515e 100644 --- a/src/ReC.Infrastructure/RecDbContext.cs +++ b/src/ReC.Infrastructure/RecDbContext.cs @@ -12,7 +12,7 @@ public class RecDbContext(DbContextOptions options) : DbContext(op public DbSet ProfileViews { get; set; } - public DbSet RecResultViews { get; set; } + public DbSet RecResultViews { get; set; } public DbSet OutRes { get; set; } @@ -263,7 +263,7 @@ public class RecDbContext(DbContextOptions options) : DbContext(op b.Property(e => e.ErrorActionName).HasColumnName("ERROR_ACTION"); }); - modelBuilder.Entity(b => + modelBuilder.Entity(b => { b.ToView("VWREC_RESULT", "dbo"); b.HasKey(e => e.Id);