AlexZhidkov / BedfordHarbourBOM

Bedford Harbour Engineering bill of materials.
5 stars 10 forks source link

Add StockTakeHistory class #18

Closed AlexZhidkov closed 9 years ago

AlexZhidkov commented 9 years ago

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;

namespace Data { public class StockTakeHistory : BaseEntity { //Replace with abstract StockBase class? public Part Part { get; set; } public Item Item { get; set; } public RawMaterial RawMaterial { get; set; }

    public int PreviousCount { get; set; }
    public int Count { get; set; }
    public DateTime CountDate { get; set; }
    public int Cost { get; set; }
}

}

AlexZhidkov commented 9 years ago

Done