Esempio n. 1
0
 public FileDto(Cnab240Code Status)
 {
     this.Status    = Status;
     DepositDetails = new List <DepositDto>();
 }
Esempio n. 2
0
 DepositDto createDepositDTO(string CPF, string Nome, DateTime Date, decimal Value, Cnab240Code Status)
 {
     return(new DepositDto()
     {
         ChaveBuscaUsuario = CPF,
         Nome = Nome,
         Date = Date,
         Value = Value,
         Status = Status,
         Id = 1,
         CompanyId = 1,
         Tax = 1,
         Type = "PAYROLL = 4",
         UserId = 1,
     });
 }