PIAPS_CW/DataModels/Models/IPurchase.cs

20 lines
399 B
C#
Raw Normal View History

2024-06-11 12:18:10 +04:00
using DataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels.Models
{
public interface IPurchase : IId
{
DateTime DateCreated { get; }
DateTime? DateClosed { get; }
PurchaseStatus Status { get; }
int ProductCount { get; }
2024-06-26 08:04:07 +04:00
double Cost { get; }
bool IsPaid { get; }
2024-06-11 12:18:10 +04:00
}
}