37 lines
1.1 KiB
C#
37 lines
1.1 KiB
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 RegAttDayExpDTO : RegAttivitaDayExplModel
|
|
{
|
|
public RegAttDayExpDTO(RegAttivitaDayExplModel origRec)
|
|
{
|
|
this.CognomeNome=origRec.CognomeNome;
|
|
this.Descrizione=origRec.Descrizione;
|
|
this.Fine=origRec.Fine;
|
|
this.Inizio = origRec.Inizio;
|
|
this.RagSociale= origRec.RagSociale;
|
|
this.Gruppo=origRec.Gruppo;
|
|
this.NomeProj=origRec.NomeProj;
|
|
this.IdxProgetto=origRec.IdxProgetto;
|
|
this.IdxDipendente=origRec.IdxDipendente;
|
|
this.IdxRA=origRec.IdxRA;
|
|
this.IdxFase=origRec.IdxFase;
|
|
this.Importo=origRec.Importo;
|
|
this.MinTot=origRec.MinTot;
|
|
this.NomeFase=origRec.NomeFase;
|
|
this.OreTot=origRec.OreTot;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Helper per selezione in tabella
|
|
/// </summary>
|
|
public bool Selected { get; set; } = false;
|
|
}
|
|
}
|