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