DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/ExcelServices/Templates/ProcessMapPlanTemplates/ProcessMapPlanLoadCapacityTemplate.cs

17 lines
472 B
C#
Raw Normal View History

2024-06-24 16:45:58 +05:00
using System.Collections.Generic;
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
2024-06-30 13:13:33 +05:00
public class ProcessMapPlanLoadCapacityTemplate : ITemplateParameters
2024-06-24 16:45:58 +05:00
{
public string SheetName => "Выработка нагрузки";
public int HeaderRowsCount => 2;
2024-06-30 13:13:33 +05:00
public string FileName => "ProcessMapPlanLoadCapacityTemplate.xlsx";
2024-06-24 16:45:58 +05:00
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
{
};
}