/// <sumary>This method determines the string convertion.</sumary> public string ToString(bool simple = false) { if (simple) { return($"Id: {IdFilme} - Nome: {NomeFilme}"); } string valor = Valor.ToString("C2"); return($"Nome: {NomeFilme}\n" + $"Valor: {valor}\n" + $"Qtd de Locacoes: {FilmeController.GetQtdLocacoes(this)}"); }