123456789101112131415161718192021222324252627 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsBudget
- {
- public FmsBudget()
- {
- this.FmsBudgetDetail = new HashSet<FmsBudgetDetail>();
- }
-
- public int SiteId { get; set; }
- public int Year { get; set; }
-
- public virtual ICollection<FmsBudgetDetail> FmsBudgetDetail { get; set; }
- }
- }
|