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
|
|
|
|
|
{
|
2024-07-26 02:46:29 +04:00
|
|
|
|
DateTime DateCreated { get; }
|
|
|
|
|
DateTime? DateClosed { get; }
|
|
|
|
|
PurchaseStatus Status { get; }
|
|
|
|
|
int ProductCount { get; }
|
2024-06-26 08:04:07 +04:00
|
|
|
|
double Cost { get; }
|
2024-07-26 02:46:29 +04:00
|
|
|
|
bool IsPaid { get; }
|
2024-06-11 12:18:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|