You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lj_plc/DataBlockHelper/Entity/DB2104Entity/GelatEntity.cs

46 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataBlockHelper.Entity.DB2104Entity
{
public class GelatEntity
{
private int StartSet;
public GelatEntity(int startSet)
{
this.StartSet = startSet;
}
public WDaybinE Daybin => new WDaybinE(StartSet);
public WaterSCE WaterSC => new WaterSCE(StartSet);
public List<Recipe_GmixE> Step => new RecipeArrayManager(10, StartSet + 40, 12).GetRecipe_GmixEList();
}
public class WDaybinE
{
private int StartSet;
public WDaybinE(int startSet)
{
this.StartSet = startSet;
}
public List<Recipe_DosE> Recipe => new RecipeArrayManager(2, StartSet, 10).GetRecipe_DosEList();
}
public class WaterSCE
{
private int StartSet;
public WaterSCE(int startSet)
{
this.StartSet = startSet;
}
public List<Recipe_DosE> Recipe => new RecipeArrayManager(2, StartSet + 20, 10).GetRecipe_DosEList();
}
}