Last active
November 23, 2020 10:44
-
-
Save andrewarosario/bd2bd38d756d2f6068530db8e1fb41e8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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