agregado procesos y bd clases
This commit is contained in:
41
bdAsegasa/Extensiones/vf_documentospolizassgextendidas.cs
Normal file
41
bdAsegasa/Extensiones/vf_documentospolizassgextendidas.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
|
||||
namespace bdAsegasa.db
|
||||
{
|
||||
public partial class vf_documentospolizassgextendidas
|
||||
{
|
||||
public bool FicheroModificado_TMP { get; set; }
|
||||
public byte[] Fichero_TMP { get; set; }
|
||||
|
||||
public bool DocumentoComprobado
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.FechaComprobacion.HasValue;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (value)
|
||||
{
|
||||
this.FechaComprobacion = DateTime.Now;
|
||||
this.idUsuarioComprueba = Utilidades.idUsuario;
|
||||
this.UsuarioComprueba = Utilidades.NombreUsuario;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.FechaComprobacion = null;
|
||||
this.idUsuarioComprueba = null;
|
||||
this.UsuarioComprueba = "";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public string DescripcionTipo
|
||||
{
|
||||
get
|
||||
{
|
||||
return ((documentospolizassg.TipoDocumentoEnum)(this.Tipo)).ToString().Replace("_", " ");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user