b2d676b555
- Add GetCustomerProfileResponseDto for retrieving customer profile information. - Create GetCustomerReferralsQuery and GetCustomerReferralsQueryHandler to fetch customer referrals with pagination and filtering options. - Introduce GetCustomerReferralsResponseDto to structure the response for customer referrals. - Implement GetCustomerSettingsQuery and GetCustomerSettingsQueryHandler to retrieve user settings. - Add GetCustomerOrder and GetCustomerOrderQueryHandler for fetching specific customer orders. - Create GetCustomerOrderHistoryQuery and GetCustomerOrderHistoryQueryHandler to retrieve order history with filtering options. - Implement GetCustomerOrdersQuery and GetCustomerOrdersQueryHandler for fetching multiple customer orders with filters. - Add GetCustomerWalletChangeLogQuery and GetCustomerWalletChangeLogQueryHandler for retrieving wallet change logs. - Implement GetCustomerWithdrawalSettingsQuery and GetCustomerWithdrawalSettingsQueryHandler for fetching withdrawal settings. - Create GetCustomerWithdrawalsQuery and GetCustomerWithdrawalsQueryHandler to retrieve customer withdrawal requests.
40 lines
975 B
C#
40 lines
975 B
C#
namespace CMSMicroservice.Application.UserWalletCQ.Queries.GetCustomerWalletChangeLog;
|
|
|
|
public class GetCustomerWalletChangeLogResponseDto
|
|
{
|
|
/// <summary>
|
|
/// موجودی جاری
|
|
/// </summary>
|
|
public long CurrentBalance { get; set; }
|
|
|
|
/// <summary>
|
|
/// مقدار تغییر
|
|
/// </summary>
|
|
public long ChangeValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// موجودی جاری شبکه
|
|
/// </summary>
|
|
public long CurrentNetworkBalance { get; set; }
|
|
|
|
/// <summary>
|
|
/// مقدار تغییر شبکه
|
|
/// </summary>
|
|
public long ChangeNerworkValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// افزایشی است؟
|
|
/// </summary>
|
|
public bool IsIncrease { get; set; }
|
|
|
|
/// <summary>
|
|
/// شناسه ارجاع
|
|
/// </summary>
|
|
public long? RefrenceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// تاریخ ایجاد
|
|
/// </summary>
|
|
public DateTime Created { get; set; }
|
|
}
|