-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPessoaFisica.cs
64 lines (48 loc) · 1.62 KB
/
PessoaFisica.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.IO;
namespace Teste
{
public class PessoaFisica : Pessoa
{
public string? CPF {get;set;}
public DateTime DataNascimento {get;set;}
public override float PagarImposto(float salario)
{
float imposto;
imposto = 0;
if (salario >= 1500.01F && salario <= 5000F) {
imposto = salario * 0.03F;
} else if (salario > 5000F) {
imposto = salario * 0.05F;
}
return imposto;
}
public bool ValidarDataNascimento(DateTime DataNasc){
DateTime DataAtual = DateTime.Today;
double Anos = (DataAtual - DataNasc).TotalDays / 365;
if (Anos >= 18) {
return true;
} else {
return false;
}
}
public override bool GravarRegistro(){
string cArqPF = AppDomain.CurrentDomain.BaseDirectory+"\\arquivos\\PessoaFisica.txt";
var sStream = new StreamWriter(cArqPF,true);
sStream.WriteLine($"CPF Cadastrado: {this.CPF} - Nome: {this.Nome}");
sStream.Close();
Console.WriteLine("Apresentando conteudo arquivo de log 'PessoaFisica.txt'");
using (var sReader = new StreamReader(cArqPF)) {
string cLine;
while ((cLine = sReader.ReadLine()) != null)
{
Console.WriteLine(cLine);
}
}
return true;
}
}
}