Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Last active November 23, 2020 10:36
Show Gist options
  • Save andrewarosario/c8cb44cf6f3d6c2be33ca71996d7ca43 to your computer and use it in GitHub Desktop.
Save andrewarosario/c8cb44cf6f3d6c2be33ca71996d7ca43 to your computer and use it in GitHub Desktop.
export class VendaService {
constructor(private usuarioService: UsuarioService) {}
public listar() {
if (this.usuarioService.admin) {
return this.listagemAdmin();
}
return this.listagemComercial();
}
public detalhar(venda: Venda) {
// Retorna um detalhe dependendo do perfil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment