예제 #1
0
 //פונקציה לשליפת בגדים על פי קטגוריה מסוימת
 public List <clothesEntity> GetListByCategory(int id)
 {
     return(ClothesBL.GetListByCategory(id));
 }
예제 #2
0
 public List <clothesEntity> DeleteClothing(int id)
 {
     return(ClothesBL.DeleteClothing(id));
 }
예제 #3
0
 public clothesEntity GetOneById(int id)
 {
     return(ClothesBL.GetOneById(id));
 }
예제 #4
0
 public List <clothesEntity> EditClothing([FromBody] clothesEntity c)
 {
     return(ClothesBL.EditClothing(c));
 }
예제 #5
0
 public List <clothesEntity> GetList()
 {
     return(ClothesBL.GetList());
 }