namespace HospitalDataModels.Models { public interface IMedicineModel : IId { string Name { get; } double Cost { get; } string Dose { get; } int ApothecaryId { get; } } }