16 lines
747 B
C#
16 lines
747 B
C#
using AutoMapper;
|
|
using DigitalData.Core.Abstractions.Application;
|
|
using DigitalData.Core.Application;
|
|
using WorkFlow.Application.Contracts;
|
|
using WorkFlow.Application.DTO.ProfileControlsTF;
|
|
using WorkFlow.Domain.Entities;
|
|
using WorkFlow.Infrastructure.Contracts;
|
|
|
|
namespace WorkFlow.Application.Services
|
|
{
|
|
public class ProfileControlsTFService(IProfileControlsTFRepository repository, IMapper mapper)
|
|
: CRUDService<IProfileControlsTFRepository, ProfileControlsTFCreateDto, ProfileControlsTFDto, ProfileControlsTFUpdateDto, ProfileControlsTF, int>(repository, mapper),
|
|
IProfileControlsTFService, ICRUDService<ProfileControlsTFCreateDto, ProfileControlsTFDto, ProfileControlsTFUpdateDto, ProfileControlsTF, int>
|
|
{
|
|
}
|
|
} |