startit/Emne 3/Lagerstyringssystem/Lagerstyringssystem/Matvare.cs
Geir Okkenhaug Jerstad 5e0cdf8850 LagerSystem
2025-01-08 13:37:24 +01:00

14 lines
279 B
C#

namespace Lagerstyringssystem;
public class Matvare: IProdukt
{
public string Navn { get; set; }
public double Pris { get; set; }
public DateTime Utløpsdato { get; set; }
public void SkrivUtInfo()
{
throw new NotImplementedException();
}
}