32 lines
727 B
C#
32 lines
727 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class comisionlineacompania
|
|
{
|
|
public int idComisionLineaCompania { get; set; }
|
|
|
|
public int? idCompania { get; set; }
|
|
|
|
public DateOnly? fechaInicio { get; set; }
|
|
|
|
public DateOnly? fechaFinal { get; set; }
|
|
|
|
public string? codigoASEGASA { get; set; }
|
|
|
|
public string? planLinea { get; set; }
|
|
|
|
public double? porcentajeComision { get; set; }
|
|
|
|
public double? porcentajeOGAS { get; set; }
|
|
|
|
public double? porcentajeCGI { get; set; }
|
|
|
|
public double? incentivos { get; set; }
|
|
|
|
public virtual companias? idCompaniaNavigation { get; set; }
|
|
}
|