123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// ER_CustomScoreFormula
- /// </summary>
- public partial class ER_CustomScoreFormula
- {
- /// <summary>
- /// CustomScoreFormulaID
- /// </summary>
- public System.Guid CustomScoreFormulaID { get; set; }
- /// <summary>
- /// ScoreType
- /// </summary>
- public Nullable<int> ScoreType { get; set; }
- /// <summary>
- /// Percentage
- /// </summary>
- public Nullable<int> Percentage { get; set; }
- /// <summary>
- /// IsRequirePass
- /// </summary>
- public Nullable<bool> IsRequirePass { get; set; }
- /// <summary>
- /// PassScore
- /// </summary>
- public Nullable<decimal> PassScore { get; set; }
- }
- }
|