2026/07/01-01

This commit is contained in:
2026-01-27 09:26:42 +01:00
parent c14bb09eb2
commit 415b281213
19 changed files with 1618 additions and 152 deletions

View File

@@ -32,14 +32,14 @@ namespace bdGrupoSanchoToro.db
}
}
}
[NotMapped]
public string DescripcionTipo
{
get
{
return ((TipoProductoEnum)this.Tipo).ToString().Replace("_", " ");
}
}
// [NotMapped]
//public string DescripcionTipo
//{
// get
// {
// return ((TipoProductoEnum)this.Tipo).ToString().Replace("_", " ");
// }
//}
public enum TipoProductoEnum
{

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace bdGrupoSanchoToro.db
{
public partial class versionesgruas
{
}
public enum VersionesGruasEnum
{
APOYADA = 1,
AUTOMONTANTE = 2,
BICOLUMNA = 3,
EMPOTRADA = 4,
MONOCOLUMNA = 5,
CON_TRASLACION = 6
}
}