2024-06-26 10:58:59 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
|
2024-06-29 21:50:28 +05:00
|
|
|
public class ProcessMapPlanDrillTestTemplate : ITemplateParameters
|
2024-06-26 10:58:59 +05:00
|
|
|
{
|
|
|
|
public string SheetName => "Дрилтест";
|
|
|
|
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
|
2024-06-29 21:50:28 +05:00
|
|
|
public string FileName => "ProcessMapPlanDrillTestTemplate.xlsx";
|
2024-06-26 10:58:59 +05:00
|
|
|
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
|
|
{
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|