Exemplo n.º 1
0
 public Evento(string codigo, string descricao, bool baseIRRF, bool baseFGTS,
               bool baseINSS, TypeEvento te, TypeReferenciaEvento tre)
 {
     this.CodigoEvento    = codigo;
     this.DescricaoEvento = descricao;
     this.SomaBaseIRRF    = baseIRRF;
     this.SomaBaseFGTS    = baseFGTS;
     this.SomaBaseINSS    = baseINSS;
     this.TipoEvento      = te;
     this.TipoReferencia  = tre;
 }
Exemplo n.º 2
0
 public FichaFinanceiraFuncionario(FuncionarioCompetencia funcionarioComp, Evento evento, decimal valor, TypeReferenciaEvento tipoReferencia, DateTime dataRef, decimal quantidade)
 {
     this.IdFuncionarioCompetencia = funcionarioComp.IdFuncionario;
     this.IdEvento       = evento.IdEvento;
     this.ValorMovimento = valor;
     this.Referencia     = tipoReferencia;
     this.DataRef        = dataRef;
     this.Quantidade     = quantidade;
 }