Updated namespaces for DTOs and services to improve project organization. Marked several interfaces as obsolete in favor of MediatR for better request handling. Simplified `BaseUpdateDto` and other DTOs by removing `IUnique<int>` implementation. Changed return types of `CreateAsync` methods to return corresponding read DTOs. Removed reference to `DigitalData.Core.DTO` in the project file, reflecting a shift in architecture for maintainability.
11 lines
345 B
C#
11 lines
345 B
C#
using DigitalData.Core.Abstraction.Application;
|
|
using DigitalData.UserManager.Application.DTOs.Module;
|
|
using DigitalData.UserManager.Domain.Entities;
|
|
|
|
namespace DigitalData.UserManager.Application.Contracts
|
|
{
|
|
[Obsolete("Use MediatR")]
|
|
public interface IModuleService : IBasicCRUDService<ModuleDto, Module, int>
|
|
{
|
|
}
|
|
} |