11 lines
218 B
C#
11 lines
218 B
C#
|
namespace HospitalDataModels.Models
|
|||
|
{
|
|||
|
public interface IMedicineModel : IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
double Cost { get; }
|
|||
|
string Dose { get; }
|
|||
|
int ApothecaryId { get; }
|
|||
|
}
|
|||
|
}
|