2018-05-22 10:11:50 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
using Core.Main;
|
|
|
|
|
using Core.Main.DataObjects;
|
|
|
|
|
using Core.Main.DataObjects.PTMagicData;
|
|
|
|
|
|
2018-12-15 22:07:29 +01:00
|
|
|
|
namespace Monitor.Pages
|
|
|
|
|
{
|
|
|
|
|
public class BagAnalyzerModel : _Internal.BasePageModelSecure
|
|
|
|
|
{
|
2018-05-22 10:11:50 +02:00
|
|
|
|
public ProfitTrailerData PTData = null;
|
|
|
|
|
|
2018-12-15 22:07:29 +01:00
|
|
|
|
public void OnGet()
|
|
|
|
|
{
|
2018-05-22 10:11:50 +02:00
|
|
|
|
base.Init();
|
|
|
|
|
|
|
|
|
|
BindData();
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-15 22:07:29 +01:00
|
|
|
|
private void BindData()
|
|
|
|
|
{
|
2019-01-07 15:33:02 +01:00
|
|
|
|
PTData = new ProfitTrailerData(PTMagicConfiguration);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|