Esempio n. 1
0
 public static int RemoveById(string skillId)
 {
     return(SkillLevelDAL.RemoveById(skillId));
 }
Esempio n. 2
0
 public static int RemoveByName(string skillName)
 {
     return(SkillLevelDAL.RemoveByName(skillName));
 }
Esempio n. 3
0
 public static int UpdatebyName(string newName, string oldName)
 {
     return(SkillLevelDAL.UpdatebyName(newName, oldName));
 }
Esempio n. 4
0
 public static int UpdatebyId(string newName, string skillId)
 {
     return(SkillLevelDAL.UpdatebyId(newName, skillId));
 }
Esempio n. 5
0
 public static int Add(string newName)
 {
     return(SkillLevelDAL.Add(newName));
 }
Esempio n. 6
0
 public static DataTable GetById(string Id)
 {
     return(SkillLevelDAL.GetById(Id));
 }
Esempio n. 7
0
 public static DataTable GetAll()
 {
     return(SkillLevelDAL.GetAll());
 }