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