Exemplo n.º 1
0
 protected Station()
 {
     Name = $"Station#{++_instanceCounter}";
     FaultHelper.PrefixFaultNames(this, Name);
 }
Exemplo n.º 2
0
 public IngredientTank(string stationName, IngredientType ingredientType)
 {
     IngredientType = ingredientType;
     FaultHelper.PrefixFaultNames(this, $"{stationName}.{ingredientType}");
 }