21 lines
518 B
C#
21 lines
518 B
C#
using AutoMapper;
|
|
using MyOffice.Core;
|
|
using MyOffice.Data.Models.Accounts;
|
|
|
|
namespace MyOffice.Services.Account.Domain;
|
|
|
|
public class AccountDetailedDto: IDataModelDto<AccountDetailed>
|
|
{
|
|
public AccountDto Account { get; set; } = null!;
|
|
public decimal TotalPlus { get; set; }
|
|
public decimal TotalMinus { get; set; }
|
|
public decimal Rest => TotalPlus - TotalMinus;
|
|
}
|
|
|
|
public class AccountDetailedDtoProfile: Profile
|
|
{
|
|
public AccountDetailedDtoProfile()
|
|
{
|
|
CreateMap<AccountDetailed, AccountDetailedDto>();
|
|
}
|
|
} |