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
13 lines (10 loc) • 344 B
text/typescript
import { Client } from "../../shared/entity/Client";
export interface IDClient {
addClient(dtclient: Client);
getClient(idcard:string);
loginClient(username:string,password:string);
getClientbyusername(username:string);
deleteClient(dtclient: Client);
updateClient(dtclient: Client);
getClients();
}