Phase 7a: Cosmetic cleanup + delete orphaned PurchasePackage handler
- Delete orphaned PurchasePackageCommand handler (no RPC dispatch, no callers) - Fix doc-comments: طلایی → پکیج in enums, entities, handlers - Remove stale 56M inline comments - Clean SystemConstants deprecated field docs
This commit is contained in:
@@ -41,14 +41,14 @@ public static class SystemConstants
|
||||
#region Package Settings
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ پکیج طلایی / پایه (ریال) - 56 میلیون تومان
|
||||
/// مبلغ پکیج پایه (ریال)
|
||||
/// [DEPRECATED] از Package.Price استفاده کنید
|
||||
/// </summary>
|
||||
[Obsolete("Moved to Package.Price. Read from Package entity instead.")]
|
||||
public const long BasePackageAmount = 56_000_000;
|
||||
|
||||
/// <summary>
|
||||
/// مبلغ وام دایا (ریال) - همان مبلغ پکیج طلایی
|
||||
/// مبلغ وام دایا (ریال)
|
||||
/// [DEPRECATED] از Package.Price استفاده کنید
|
||||
/// </summary>
|
||||
[Obsolete("Moved to Package.Price. Read from Package entity with SupportsDayaPurchase=true.")]
|
||||
|
||||
@@ -63,7 +63,7 @@ public class User : BaseAuditableEntity
|
||||
public DateTime? DayaCreditReceivedAt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// نحوه خرید پکیج طلایی (برای جلوگیری از خرید مجدد)
|
||||
/// نحوه خرید پکیج (برای جلوگیری از خرید مجدد)
|
||||
/// </summary>
|
||||
public PackagePurchaseMethod PackagePurchaseMethod { get; set; } = PackagePurchaseMethod.None;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ public class UserWallet : BaseAuditableEntity
|
||||
public long Balance { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// موجودی شبکه/کارمزد (کیف پول طلایی) - قابل برداشت نقدی یا خرید الماس
|
||||
/// موجودی شبکه/کارمزد — قابل برداشت نقدی یا خرید الماس
|
||||
/// </summary>
|
||||
public long NetworkBalance { get; set; }
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ public enum CommissionPayoutStatus
|
||||
Pending = 0,
|
||||
|
||||
/// <summary>
|
||||
/// واریز شده به کیف پول طلایی
|
||||
/// واریز شده به کیف پول
|
||||
/// </summary>
|
||||
Paid = 1,
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
namespace CMSMicroservice.Domain.Enums;
|
||||
|
||||
/// <summary>
|
||||
/// نحوه خرید پکیج طلایی توسط کاربر
|
||||
/// نحوه خرید پکیج توسط کاربر
|
||||
/// </summary>
|
||||
public enum PackagePurchaseMethod
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user