Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Last active November 23, 2020 10:44
Show Gist options
  • Save andrewarosario/bd2bd38d756d2f6068530db8e1fb41e8 to your computer and use it in GitHub Desktop.
Save andrewarosario/bd2bd38d756d2f6068530db8e1fb41e8 to your computer and use it in GitHub Desktop.
export class VendaAdminService extends VendaService {
public listar() {
// Retorna a listagem do Admin
}
public detalhar(venda: Venda) {
// Detalha a venda com o perfil Admin
}
}
export class VendaComercialService extends VendaService {
public listar() {
// Retorna a listagem do Comercial
}
public detalhar(venda: Venda) {
// Detalha a venda com o perfil Comercial
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment