20 lines
401 B
C#
20 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdHerramientaCACOA.db;
|
|
|
|
public partial class costesdirectos
|
|
{
|
|
public int idcostesdirectos { get; set; }
|
|
|
|
public int TotalTrabajadores { get; set; }
|
|
|
|
public int Arquitectos { get; set; }
|
|
|
|
public int ArquitectosTecnicos { get; set; }
|
|
|
|
public int Delineantes { get; set; }
|
|
|
|
public double CosteSalarial { get; set; }
|
|
}
|