Skip to content

Commit

Permalink
refactor: services
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbarker committed Jun 11, 2021
1 parent 57f9e3c commit 5dc63e7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,4 @@ public CategoryVO ConverteEntidadeParaVO(Category category) {
return categoryVO;
}


}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
@Service
public class CustHistServices {

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
@Service
public class CustomersServices {

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
@Service
public class InventoryServices {

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ public Orderlines update(Orderlines orderlines, Integer id) {
public void delete(Integer id) {
orderlinesRepository.deleteById(id);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,4 @@ public Orders update(Integer id, Orders orders) {
public void delete(Integer id) {
ordersRepository.deleteById(id);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ public Products update(Products products, Integer id) {
public void delete(Integer id) {
productsRepository.deleteById(id);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
@Service
public class ReorderServices {

}
}

0 comments on commit 5dc63e7

Please sign in to comment.