f0bea75284
All the changes necessary to save shopping cart to DB
21 lines
483 B
C#
21 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RMDataManagerLibrary.Models
|
|
{
|
|
public class SaleDBModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string CashierId { get; set; }
|
|
public DateTime SaleDate { get; set; } = DateTime.UtcNow;
|
|
public decimal SubTotal { get; set; }
|
|
public decimal Tax { get; set; }
|
|
public decimal Total { get; set; }
|
|
|
|
|
|
}
|
|
}
|