Rework so employee dont use repos but servies

This commit is contained in:
Alex Pedersen
2026-07-30 10:23:27 +02:00
parent 6df185d519
commit 9497afe262
26 changed files with 630 additions and 125 deletions

View File

@@ -0,0 +1,10 @@
namespace Pos.Models
{
public class ReceiptLineModel
{
public string Product { get; set; } = string.Empty;
public int Pieces { get; set; }
public decimal Price { get; set; }
public decimal Total { get; set; }
}
}