Upload files to 'ShipyardContracts/ViewModels'
This commit is contained in:
parent
d69cbadcc5
commit
7c3d3c4e93
17
ShipyardContracts/ViewModels/ReportOrdersViewModel.cs
Normal file
17
ShipyardContracts/ViewModels/ReportOrdersViewModel.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ShipyardContracts.ViewModels
|
||||
{
|
||||
public class ReportOrdersViewModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public DateTime DateCreate { get; set; }
|
||||
public string ShipName { get; set; }
|
||||
public double Sum { get; set; }
|
||||
public string OrderStatus { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
15
ShipyardContracts/ViewModels/ReportShipComponentViewModel.cs
Normal file
15
ShipyardContracts/ViewModels/ReportShipComponentViewModel.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ShipyardContracts.ViewModels
|
||||
{
|
||||
public class ReportShipComponentViewModel
|
||||
{
|
||||
public string ShipName { get; set; } = string.Empty;
|
||||
public int TotalCount { get; set; }
|
||||
public List<Tuple<string, int>> Components { get; set; } = new();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user