51 lines
1.9 KiB
C#
51 lines
1.9 KiB
C#
using AutoMapper;
|
|
using DigitalData.Core.Abstractions.Infrastructure;
|
|
using DigitalData.Core.Application;
|
|
using DigitalData.Core.DTO;
|
|
using DigitalData.UserManager.Application.Contracts;
|
|
using DigitalData.UserManager.Application.DTOs.Base;
|
|
using DigitalData.UserManager.Application.DTOs.User;
|
|
using DigitalData.UserManager.Domain.Entities;
|
|
|
|
namespace DigitalData.UserManager.Application.Services
|
|
{
|
|
public class BaseService<TCRUDRepository, TCreateDto, TReadDto, TBaseEntity> : CRUDService<TCRUDRepository, TCreateDto, TReadDto, TBaseEntity, int>, IBaseService<TCreateDto, TReadDto, TBaseEntity>
|
|
where TCRUDRepository : ICRUDRepository<TBaseEntity, int>
|
|
where TCreateDto : BaseCreateDto
|
|
where TReadDto : class
|
|
where TBaseEntity : BaseEntity
|
|
{
|
|
public BaseService(TCRUDRepository repository, IMapper mapper) : base(repository, mapper)
|
|
{
|
|
}
|
|
|
|
private Lazy<Task<UserReadDto?>>? _lazyUserAsync = null;
|
|
|
|
public Func<Task<UserReadDto?>> UserFactoryAsync { set => _lazyUserAsync = new Lazy<Task<UserReadDto?>>(value); }
|
|
|
|
public async Task<UserReadDto?> GetUserAsync() => _lazyUserAsync is null ? null : await _lazyUserAsync.Value;
|
|
|
|
public override async Task<DataResult<int>> CreateAsync(TCreateDto createDto)
|
|
{
|
|
var user = await GetUserAsync();
|
|
if(user is not null)
|
|
{
|
|
createDto.AddedWho = user.Username;
|
|
}
|
|
|
|
return await base.CreateAsync(createDto);
|
|
}
|
|
|
|
// made without generic type
|
|
public override async Task<Result> UpdateAsync<TUpdateDto>(TUpdateDto updateDto)
|
|
{
|
|
var user = await GetUserAsync();
|
|
if (user is not null && updateDto is BaseUpdateDto baseUpdateDto)
|
|
{
|
|
baseUpdateDto.ChangedWho = user.Username;
|
|
}
|
|
|
|
return await base.UpdateAsync(updateDto);
|
|
}
|
|
}
|
|
} |