12345678910111213141516171819202122232425262728 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsFormulaBase
- {
- public BemsFormulaBase()
- {
- this.BemsFormula = new HashSet<BemsFormula>();
- }
-
- public int FacilityTypeId { get; set; }
- public int FormulaId { get; set; }
- public string Name { get; set; }
-
- public virtual ICollection<BemsFormula> BemsFormula { get; set; }
- }
- }
|