20 lines
375 B
C#
20 lines
375 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataModels.Models
|
|
{
|
|
public interface IProduct : IId
|
|
{
|
|
string Name { get; }
|
|
double Price { get; }
|
|
bool IsBeingSold { get; }
|
|
public double Rate { get; }
|
|
int Amount { get; }
|
|
string Category { get; }
|
|
string Description { get; }
|
|
}
|
|
}
|