WorkFlow/WorkFlow.Infrastructure/Contracts/IProfControlsTfRepository.cs

9 lines
233 B
C#

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