19 lines
555 B
C#
19 lines
555 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KellyReport_D.Model
|
|
{
|
|
internal class GenForecaseContext
|
|
{
|
|
public Microsoft.Office.Interop.Excel.Application Application { get; set; }
|
|
|
|
public string[] MonthData { get; set; }
|
|
public IList<SalesForecastInput> SalesForecastList { get; set; }
|
|
public IList<ProductForecastInput> ProductForecastList { get; set; }
|
|
public IList<ClientContact> ClientContactList { get; set; }
|
|
}
|
|
}
|