Dev #10

Merged
bytegrip merged 5 commits from dev into main 2025-06-21 20:38:41 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 28fc432705 - Show all commits

View File

@@ -4,7 +4,7 @@ namespace Imprink.Application.Commands.Categories;
public class DeleteCategoryCommand : IRequest<bool> public class DeleteCategoryCommand : IRequest<bool>
{ {
public Guid Id { get; set; } public Guid Id { get; init; }
} }
public class DeleteCategoryHandler(IUnitOfWork unitOfWork) : IRequestHandler<DeleteCategoryCommand, bool> public class DeleteCategoryHandler(IUnitOfWork unitOfWork) : IRequestHandler<DeleteCategoryCommand, bool>

View File

@@ -2,4 +2,4 @@ using AutoMapper;
namespace Imprink.Application; namespace Imprink.Application;
public abstract class MappingProfile : Profile { } public abstract class MappingProfile : Profile;