2024-06-25 15:22:32 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
|
2024-06-30 11:17:10 +05:00
|
|
|
public class ProcessMapPlanTFOrientationTemplate : ITemplateParameters
|
2024-06-25 15:22:32 +05:00
|
|
|
{
|
2024-06-30 11:17:10 +05:00
|
|
|
public string SheetName => "Выставление";
|
2024-06-25 15:22:32 +05:00
|
|
|
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
|
2024-06-30 11:17:10 +05:00
|
|
|
public string FileName => "ProcessMapPlanTFOrientationTemplate.xlsx";
|
2024-06-25 15:22:32 +05:00
|
|
|
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
|
|
{
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|