f0f48118e7
- 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.
33 lines
678 B
C#
33 lines
678 B
C#
namespace CMSMicroservice.Domain.Enums;
|
|
|
|
/// <summary>
|
|
/// محدوده تنظیمات سیستم (Scope)
|
|
/// </summary>
|
|
public enum ConfigurationScope
|
|
{
|
|
/// <summary>
|
|
/// تنظیمات کلی سیستم
|
|
/// </summary>
|
|
System = 0,
|
|
|
|
/// <summary>
|
|
/// تنظیمات شبکه باینری
|
|
/// </summary>
|
|
Network = 1,
|
|
|
|
/// <summary>
|
|
/// تنظیمات باشگاه مشتریان
|
|
/// </summary>
|
|
Club = 2,
|
|
|
|
/// <summary>
|
|
/// تنظیمات کمیسیون
|
|
/// </summary>
|
|
Commission = 3,
|
|
|
|
/// <summary>
|
|
/// تنظیمات مالیات بر ارزش افزوده
|
|
/// </summary>
|
|
VAT = 4
|
|
}
|