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 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 => new RecipeArrayManager(2, StartSet, 10).GetRecipe_DosEList(); } public class WaterSCE { private int StartSet; public WaterSCE(int startSet) { this.StartSet = startSet; } public List Recipe => new RecipeArrayManager(2, StartSet + 20, 10).GetRecipe_DosEList(); } }