Base solution for your next web application
Open Closed

Excel Exporter #5714


User avatar
0
tugrulkarakaya created

Hi All,

The excel Exporter derived from EpPlusExcelExporterBase but there is no proper default ITempFileCacheManager tı initialize base class. see below (edited code)

    public class MachineLocationsExcelExporter : EpPlusExcelExporterBase, IMachineLocationsExcelExporter
    {

        private readonly ITimeZoneConverter _timeZoneConverter;
        private readonly IAbpSession _abpSession;

        public MachineLocationsExcelExporter(
            ITimeZoneConverter timeZoneConverter,
            IAbpSession abpSession,
             ITempFileCacheManager tempFileCacheManager) : base(tempFileCacheManager)

And the generated code was

     public MachineLocationsExcelExporter(
            ITimeZoneConverter timeZoneConverter,
            IAbpSession abpSession)

is that proper fix or do I implement something wrong?


2 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi @tugrulkarakaya

    Latest version of RAD tool must contain this change. Are you using RAD Tool v1.6.0.3 ?

  • User Avatar
    0
    tugrulkarakaya created

    I have just checked after sending this post ans see that it is updated. thx