16 lines
593 B
C#
16 lines
593 B
C#
using DigitalData.Core.Abstractions.Application;
|
|
using DigitalData.Core.Application;
|
|
using WorkFlow.Application.Contracts;
|
|
using WorkFlow.Application.DTO.Profile;
|
|
using WorkFlow.Domain.Entities;
|
|
using WorkFlow.Infrastructure.Contracts;
|
|
|
|
namespace WorkFlow.Application.Services;
|
|
|
|
public class ProfileService : CRUDService<IProfileRepository, ProfileCreateDto, ProfileDto, Profile, int>,
|
|
IProfileService, ICRUDService<ProfileCreateDto, ProfileDto, Profile, int>
|
|
{
|
|
public ProfileService(IProfileRepository repository, AutoMapper.IMapper mapper) : base(repository, mapper)
|
|
{
|
|
}
|
|
} |