public FanCapacityModelBuilder(string title, string description, Entity.UserEntity user, Entity.MaterialEntity material, double radius, double length, bool complexDesign, long id = 0) : base(id, title, description, user, material) { Model = new FanCapacityModelEntity(title, description, radius, length, complexDesign, id); }
public ModelBuilder(long id, string title, string description, Entity.UserEntity user, Entity.MaterialEntity material) { User = user; Material = material; }
public ContainerPressureModelBuilder(string title, string description, Entity.UserEntity user, Entity.MaterialEntity material, double width, double height, bool hasExhaust, long id = 0) : base(id, title, description, user, material) { Model = new ContainerPressureModelEntity(title, description, width, height, hasExhaust, id); }