Implement CurrentPrice Writer service

This commit is contained in:
Sergey Chebotar 2023-06-20 09:59:36 +03:00
parent a73cc46449
commit a9d7ac710e

View File

@ -0,0 +1,19 @@
#if !NET472
using System.Runtime.Versioning;
using RhSolutions.Tools;
#endif
namespace RhSolutions.Services;
public class CurrentPriceWriter : ExcelWriterBase, IWriter, IDisposable
{
public CurrentPriceWriter(Application application, IAddInConfiguration configuration)
{
_application = application;
_resultBar = new();
_headers = configuration.GetPriceListHeaders();
_worksheet = _application.ActiveSheet;
_appendValues = false;
}
}