forked from ddrilling/AsbCloudServer
IvanovEugeniy
e16df1f705
внесение корректировок в сервис DailyReport Убраны лишние комментарии и лишний код : -из классов создающих блоки отчета -из метода MakerExcel Добавлен блок Dimensionless
24 lines
663 B
C#
24 lines
663 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AsbCloudApp.Data.DailyReport;
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
/// <summary>
|
|
/// Блоки для формирования суточного рапорта
|
|
/// </summary>
|
|
public class DailyReportDto
|
|
{
|
|
|
|
public DailyReportHeadDto HeadDto { get; set; }
|
|
public DailyReportBhaDto BhaDto { get; set; }
|
|
public DailyReportDimensionlessDto DimensionlessDto { get; set; }
|
|
public DailyReportTimeBalanceDto TimeBalanceDto { get; set; }
|
|
public DailyReportSaubDto SaubDto { get; set; }
|
|
public DailyReportSignDto SignDto { get; set; }
|
|
|
|
|
|
}
|
|
}
|