26 lines
848 B
C#
26 lines
848 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace CompanyManagment.App.Contracts.Loan;
|
|
public class LoanViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string EmployeeFullName { get; set; }
|
|
public string StartDateTime { get; set; }
|
|
public string Count { get; set; }
|
|
public string Amount { get; set; }
|
|
public string AmountPerMonth { get; set; }
|
|
public List<LoanInstallmentViewModel> Installment { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public double AmountDouble { get; set; }
|
|
public string MonthFa { get; set; }
|
|
public string YearFa { get; set; }
|
|
}
|