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 (10 loc) 293 B
import { User } from "../../shared/entity/User"; export interface ILUser { addUser(dtuser: User); getUser(idcard: string) ; loginUser(username:string,password:string); updateUser(dtuser: User); getClients(); getAdmins(); deleteUser(dtuser: User); }