namespace HospitalDataModels.Models { public interface IRecipeModel : IId { string Name { get; } DateTime Date { get; } int ApothecaryId { get; } Dictionary RecipeMedicines { get; } Dictionary RecipeTreatments { get; } } }