namespace PlumbingRepairDataModels.Models { public interface IWorkModel : IId { string WorkName { get; } double Price { get; } Dictionary WorkComponents { get; } } }