using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataModels.Models { public interface ISupplyDoc : IId { string Name { get; } Guid SupplyId { get; } } }