using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Demo.Model.Infrastructure { public interface IBillEntry { string FMaterialId { get; set; } string FStockId { get; set; } decimal FQty { get; set; } decimal FPrice { get; set; } } }