using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProjectGarage.Entities; public class FuelFuelReplenishment { public int Id { get; private set; } public int FuelId { get; private set; } public int Amount { get; private set; } public string FuelName { get; private set; } = string.Empty; public static FuelFuelReplenishment CreateElement(int id, int fuelId, int amount) { return new FuelFuelReplenishment { Id = id, FuelId = fuelId, Amount = amount }; } }