Ejemplo n.º 1
0
 public LeaseColxnRow(SectionDTO sec, AmbulantColxnDTO dto)
 {
     Lease = new LeaseDTO
     {
         Tenant = TenantModel.Named(dto.ReceivedFrom),
         Stall  = StallDTO.Named($"{sec.Name} Section Ambulant")
     };
     AmbulantDTO = dto;
     DocumentRef = dto.PRNumber?.ToString();
     Ambulant    = dto.Amount;
     Remarks     = dto.Remarks;
 }