2025-09-27 08:46:36 +03:30
|
|
|
global using MediatR;
|
|
|
|
|
global using FluentValidation;
|
|
|
|
|
global using Mapster;
|
Add validators and services for Product Galleries and Product Tags
- Implemented Create, Delete, Get, and Update validators for Product Galleries.
- Added Create, Delete, Get, and Update validators for Product Tags.
- Created service classes for handling Discount Categories, Discount Orders, Discount Products, Discount Shopping Cart, Product Categories, Product Galleries, and Product Tags.
- Each service class integrates with CQRS for command and query handling.
- Established mapping profiles for Product Galleries.
2025-12-04 02:40:49 +03:30
|
|
|
global using Microsoft.Extensions.Logging;
|
2025-09-27 08:46:36 +03:30
|
|
|
|
|
|
|
|
global using CMSMicroservice.Domain.Entities;
|
2025-11-29 04:02:02 +03:30
|
|
|
global using CMSMicroservice.Domain.Entities.Club;
|
|
|
|
|
global using CMSMicroservice.Domain.Entities.Network;
|
|
|
|
|
global using CMSMicroservice.Domain.Entities.Commission;
|
|
|
|
|
global using CMSMicroservice.Domain.Entities.Configuration;
|
|
|
|
|
global using CMSMicroservice.Domain.Entities.History;
|
|
|
|
|
global using CMSMicroservice.Domain.Enums;
|
2025-09-27 08:46:36 +03:30
|
|
|
global using CMSMicroservice.Application.Common.Interfaces;
|
|
|
|
|
global using System.Threading;
|
|
|
|
|
global using System.Threading.Tasks;
|
|
|
|
|
global using System;
|
|
|
|
|
global using System.Collections.Generic;
|
|
|
|
|
global using System.Linq;
|
|
|
|
|
global using Microsoft.EntityFrameworkCore;
|
|
|
|
|
global using CMSMicroservice.Application.Common.Exceptions;
|
|
|
|
|
global using CMSMicroservice.Application.Common.Extensions;
|
|
|
|
|
global using CMSMicroservice.Application.Common.Models;
|