2024-06-25 10:19:47 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
|
2024-06-30 11:46:16 +05:00
|
|
|
public class ProcessMapPlanPositioningOffTheBottomTemplate : ITemplateParameters
|
2024-06-25 10:19:47 +05:00
|
|
|
{
|
|
|
|
public string SheetName => "Позиционирование над забоем";
|
|
|
|
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
|
2024-06-30 11:46:16 +05:00
|
|
|
public string FileName => "ProcessMapPlanPositioningOffTheBottomTemplate.xlsx";
|
2024-06-25 10:19:47 +05:00
|
|
|
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
|
|
{
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|