35 lines
		
	
	
		
			864 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			864 B
		
	
	
	
		
			C#
		
	
	
	
using Radzen.Blazor;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace MasaBlazorApp3.Pojo.Vo
 | 
						|
{
 | 
						|
    public class InvoiceVo
 | 
						|
    {
 | 
						|
        public DrugInfo Drug { get; set; }
 | 
						|
 | 
						|
        public InOutInvoice Invoice { get; set; }
 | 
						|
 | 
						|
        public List<ChannelStock> ChannelStocks { get; set; }
 | 
						|
 | 
						|
        public int StockQuantity { get; set; }
 | 
						|
 | 
						|
        public int Quantity { get; set; }
 | 
						|
 | 
						|
        public int GetQuantity { get; set; } = 0;
 | 
						|
 | 
						|
        public int Status { get; set; } = 0;
 | 
						|
 | 
						|
        public int[] BeforeQuantity { get; set; } = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0 };
 | 
						|
 | 
						|
        public int[] AfterQuantity { get; set; } = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0 };
 | 
						|
 | 
						|
        public int AddQuantity { get; set; } = 0;
 | 
						|
 | 
						|
        public RadzenDataGrid<ChannelStock> Grid { get; set; }
 | 
						|
    }
 | 
						|
}
 |