feat(Contracts): IProfControlsTfRepository als eine Implementierung von ICRUDRepository erstellt

This commit is contained in:
Developer 02 2024-10-23 10:41:25 +02:00
parent 16f694eb67
commit 3d35c1ab21
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
using DigitalData.Core.Abstractions.Infrastructure;
using WorkFlow.Domain.Entities;
namespace WorkFlow.Infrastructure.Contracts
{
public interface IProfControlsTfRepository : ICRUDRepository<ProfControlsTf, int>
{
}
}