30 lines
833 B
C#
30 lines
833 B
C#
using GPW.CORE.Data.DbModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GPW.CORE.Data.DTO
|
|
{
|
|
public class TimbratureDTO : TimbratureModel
|
|
{
|
|
public TimbratureDTO(TimbratureModel origRec)
|
|
{
|
|
this.DataOra = origRec.DataOra;
|
|
this.IdxDipendente = origRec.IdxDipendente;
|
|
this.Entrata = origRec.Entrata;
|
|
this.Ipv4 = origRec.Ipv4;
|
|
this.CodTipoTimb = origRec.CodTipoTimb;
|
|
this.Approv = origRec.Approv;
|
|
this.DipNav = origRec.DipNav;
|
|
this.CodTipoTimbNav=origRec.CodTipoTimbNav;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Helper per selezione in tabella
|
|
/// </summary>
|
|
public bool Selected { get; set; } = false;
|
|
}
|
|
}
|