30 lines
958 B
C#
30 lines
958 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Common
|
|
{
|
|
public class Dashboard
|
|
{
|
|
[Key]
|
|
public byte DashboardId { get; set; }
|
|
public int ForCanvassItem { get; set; }
|
|
public int WOSupResponseCount { get; set; }
|
|
public int PRNoCount { get; set; }
|
|
public int ForApprover1 { get; set; }
|
|
public int ForApprover2 { get; set; }
|
|
public int ForPOApproval { get; set; }
|
|
public int ForPO { get; set; }
|
|
public int ForPayment { get; set; }
|
|
public int ForDelivery { get; set; }
|
|
public int PartialReceived { get; set; }
|
|
public int ApprovedPO { get; set; }
|
|
public int SupplierBid { get; set; }
|
|
public int SuppBidApproval { get; set; }
|
|
public int DeniedItem { get; set; }
|
|
}
|
|
}
|