14 lines
279 B
C#
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();
|
|
}
|
|
} |