feat(ProfControlsTf.cs): Umbenennung der Domäne, des Repository und des dbset in ProfileControlsTF
This commit is contained in:
parent
4bcac51473
commit
c76f9d1709
@ -6,7 +6,7 @@ using System.ComponentModel.DataAnnotations.Schema;
|
||||
namespace WorkFlow.Domain.Entities
|
||||
{
|
||||
[Table("TBMWF_PROF_CONTROLS_TF", Schema = "dbo")]
|
||||
public class ProfControlsTf : IUnique<int>
|
||||
public class ProfileControlsTF : IUnique<int>
|
||||
{
|
||||
[Key]
|
||||
[Column("GUID")]
|
||||
@ -3,7 +3,7 @@ using WorkFlow.Domain.Entities;
|
||||
|
||||
namespace WorkFlow.Infrastructure.Contracts
|
||||
{
|
||||
public interface IProfControlsTfRepository : ICRUDRepository<ProfControlsTf, int>
|
||||
public interface IProfileControlsTFRepository : ICRUDRepository<ProfileControlsTF, int>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -8,7 +8,7 @@ namespace WorkFlow.Infrastructure
|
||||
{
|
||||
public static IServiceCollection AddWorkFlowRepositories(this IServiceCollection services) => services
|
||||
.AddScoped<IConfigRepository, ConfigRepository>()
|
||||
.AddScoped<IProfControlsTfRepository, ProfControlsTfRepository>()
|
||||
.AddScoped<IProfileControlsTFRepository, ProfileControlsTFRepository>()
|
||||
.AddScoped<IProfileObjStateRepository, ProfileObjStateRepository>()
|
||||
.AddScoped<IProfileRepository, ProfileRepository>()
|
||||
.AddScoped<IWfStateRepository, WfStateRepository>();
|
||||
|
||||
@ -1,11 +0,0 @@
|
||||
using DigitalData.Core.Abstractions.Infrastructure;
|
||||
using DigitalData.Core.Infrastructure;
|
||||
using WorkFlow.Domain.Entities;
|
||||
using WorkFlow.Infrastructure.Contracts;
|
||||
|
||||
namespace WorkFlow.Infrastructure.Repositories
|
||||
{
|
||||
public class ProfControlsTfRepository(WFDBContext dbContext) : CRUDRepository<ProfControlsTf, int, WFDBContext>(dbContext, dbContext.ProfControlsTfs), IProfControlsTfRepository, ICRUDRepository<ProfControlsTf, int>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
using DigitalData.Core.Abstractions.Infrastructure;
|
||||
using DigitalData.Core.Infrastructure;
|
||||
using WorkFlow.Domain.Entities;
|
||||
using WorkFlow.Infrastructure.Contracts;
|
||||
|
||||
namespace WorkFlow.Infrastructure.Repositories
|
||||
{
|
||||
public class ProfileControlsTFRepository(WFDBContext dbContext) : CRUDRepository<ProfileControlsTF, int, WFDBContext>(dbContext, dbContext.ProfileControlsTFs), IProfileControlsTFRepository, ICRUDRepository<ProfileControlsTF, int>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -7,7 +7,7 @@ namespace WorkFlow.Infrastructure
|
||||
{
|
||||
public DbSet<Config> Configs { get; set; }
|
||||
|
||||
public DbSet<ProfControlsTf> ProfControlsTfs { get; set; }
|
||||
public DbSet<ProfileControlsTF> ProfileControlsTFs { get; set; }
|
||||
|
||||
public DbSet<Profile> Profiles { get; set; }
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user