Files

45 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.AccessControl;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.Report
{
public class AllReport
{
public int AllPercent { get; set; }
public int ContractPercent { get; set; }
public int ContractSignaturePercent { get; set; }
public int CheckoutPercent { get; set; }
public int CheckoutSignaturePercent { get; set; }
public string Year { get; set; }
public string Month { get; set; }
public List<AccountResults> ContractAccountResults { get; set; }
public List<AccountResults> CheckoutAccountResults { get; set; }
//قراداد
public int AllContract { get; set; }
public int ContractNotDone { get; set; }
public int ContrcatDone { get; set; }
public int ContractSignNotDone { get; set; }
public int ContractSignDone { get; set; }
public int ContractSignToBe { get; set; }
//تصفیه
public int AllCheckout { get; set; }
public int CheckoutNotDone { get; set; }
public int CheckoutDone { get; set; }
public int CheckoutSignNotDone { get; set; }
public int CheckoutSignDone { get; set; }
public int CheckoutSignToBe { get; set; }
}
}