ปรับปรุงรายงานกรอบวงเงิน

This commit is contained in:
Nakorn Rientrakrunchai
2021-03-02 17:14:35 +07:00
parent a4e54a1179
commit ad14f4f664
77 changed files with 10782 additions and 4 deletions

View File

@@ -312,6 +312,15 @@ namespace Test01
services.AddScoped<Ieva_create_evaluation_detail_review0AService, eva_create_evaluation_detail_review0AService>();
services.AddScoped<IBaseRepository2<eva_limit_frame_employeeEntity, Guid>, BaseRepository2<eva_limit_frame_employeeEntity, Guid>>();
services.AddScoped<Ieva_limit_frame_employeeService, eva_limit_frame_employeeService>();
services.AddScoped<IBaseRepository2<eva_limit_frame_groupEntity, Guid>, BaseRepository2<eva_limit_frame_groupEntity, Guid>>();
services.AddScoped<Ieva_limit_frame_groupService, eva_limit_frame_groupService>();
services.AddScoped<IBaseRepository2<eva_limit_frame_planEntity, Guid>, BaseRepository2<eva_limit_frame_planEntity, Guid>>();
services.AddScoped<Ieva_limit_frame_planService, eva_limit_frame_planService>();
#endregion
services.TryAddSingleton<IHttpContextAccessor, HttpContextAccessor>();
@@ -571,6 +580,18 @@ namespace Test01
cfg.CreateMap<eva_create_evaluation_detailEntity, eva_create_evaluation_detail_review0AViewModel>();
cfg.CreateMap<eva_create_evaluation_detailEntity, eva_create_evaluation_detail_review0AWithSelectionViewModel>();
cfg.CreateMap<eva_limit_frame_employeeInputModel, eva_limit_frame_employeeEntity>();
cfg.CreateMap<eva_limit_frame_employeeEntity, eva_limit_frame_employeeViewModel>();
cfg.CreateMap<eva_limit_frame_employeeEntity, eva_limit_frame_employeeWithSelectionViewModel>();
cfg.CreateMap<eva_limit_frame_groupInputModel, eva_limit_frame_groupEntity>();
cfg.CreateMap<eva_limit_frame_groupEntity, eva_limit_frame_groupViewModel>();
cfg.CreateMap<eva_limit_frame_groupEntity, eva_limit_frame_groupWithSelectionViewModel>();
cfg.CreateMap<eva_limit_frame_planInputModel, eva_limit_frame_planEntity>();
cfg.CreateMap<eva_limit_frame_planEntity, eva_limit_frame_planViewModel>();
cfg.CreateMap<eva_limit_frame_planEntity, eva_limit_frame_planWithSelectionViewModel>();
});
#endregion