UNPKG

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

12 lines (9 loc) 313 B
import { Category } from "../../shared/entity/Category"; export interface IDCategory { addCategory(dtcat: Category); getCategory(name:string); updateCategory(dtcat: Category); deleteCategory(dtcat: Category); getCategorysByNameLetter(expression: string); getCategories(); }