- IUnique-Schnittstellen für ProfileControlsTFUpdateDto, ProfileObjStateUpdateDto und StateUpdateDto implementiert.
10 lines
295 B
C#
10 lines
295 B
C#
using DigitalData.Core.Abstractions.Application;
|
|
using WorkFlow.Application.DTO.Profile;
|
|
using WorkFlow.Domain.Entities;
|
|
|
|
namespace WorkFlow.Application.Contracts
|
|
{
|
|
public interface IProfileService : ICRUDService<ProfileCreateDto, ProfileDto, ProfileUpdateDto, Profile, int>
|
|
{
|
|
}
|
|
} |