ПИбд-23 Старостин Иван Лабораторная работа №4 #6

Closed
Ivan_Starostin wants to merge 17 commits from lab4 into lab3
2 changed files with 32 additions and 0 deletions
Showing only changes of commit 7c3d3c4e93 - Show all commits

View 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;
}
}

View 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();
}
}