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