53 lines
1.9 KiB
C#
53 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Ease.CoreV35;
|
|
using Ease.CoreV35.Model;
|
|
using Ease.CoreV35.Caching;
|
|
using System.Data.Linq.Mapping;
|
|
|
|
namespace Payroll.BO
|
|
{
|
|
public class AssesmentFormConst
|
|
{
|
|
public const int assesmentDate = 1;
|
|
public const int sConsultant = 2;
|
|
public const int consultant = 3;
|
|
public const int writeIn = 4;
|
|
public const int walkIn = 5;
|
|
public const int others = 6;
|
|
public const int mobility = 7;
|
|
public const int graphic = 8;
|
|
public const int highPersonalStanderds = 9;
|
|
public const int mentalCapacity = 10;
|
|
public const int achievementOrientation = 11;
|
|
public const int leadershipCapabilities = 12;
|
|
public const int maturity = 13;
|
|
public const int interpersonalSkills = 14;
|
|
public const int communication = 15;
|
|
public const int creativity = 16;
|
|
public const int adaptability = 17;
|
|
public const int overall = 18;
|
|
public const int ICB = 19;
|
|
public const int campus = 20;
|
|
public const int postCampus = 21;
|
|
public const int position = 22;
|
|
public const int year = 23;
|
|
public const int areasOfStrength1 = 24;
|
|
public const int areasOfStrength2 = 25;
|
|
public const int areasOfStrenth3 = 26;
|
|
public const int areasForDevelopment1 = 27;
|
|
public const int areasForDevelopment2 = 28;
|
|
public const int areasForDevelopment3 = 29;
|
|
public const int SpecialConsideration1 = 30;
|
|
public const int SpecialConsideration2 = 31;
|
|
public const int SpecialConsideration3 = 32;
|
|
public const int positionConsideredFor = 33;
|
|
public const int location = 34;
|
|
public const int hire = 35;
|
|
public const int turndown = 36;
|
|
public const int holdForComparison = 37;
|
|
}
|
|
}
|