e-commercee
Version:
This package contains a backend of what would be the logic of a e-commercee software, the architecture used is made in 3 layers
11 lines (9 loc) • 329 B
text/typescript
import { Category } from "../../shared/entity/Category";
export interface ILCategory {
getCategory(name: string);
addCategory(dtcategory: Category);
updateCategory(dtcategory: Category);
deleteCategory(dtcategory: Category);
getCategorysByNameLetter(expression: string) ;
getCategories();
}