Last active
November 23, 2020 10:36
-
-
Save andrewarosario/c8cb44cf6f3d6c2be33ca71996d7ca43 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 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