- IUnique-Schnittstellen für ProfileControlsTFUpdateDto, ProfileObjStateUpdateDto und StateUpdateDto implementiert.
10 lines
283 B
C#
10 lines
283 B
C#
using DigitalData.Core.Abstractions.Application;
|
|
using WorkFlow.Application.DTO.State;
|
|
using WorkFlow.Domain.Entities;
|
|
|
|
namespace WorkFlow.Application.Contracts
|
|
{
|
|
public interface IStateService : ICRUDService<StateCreateDto, StateDto, StateUpdateDto, State, int>
|
|
{
|
|
}
|
|
} |