16 lines
336 B
C#
16 lines
336 B
C#
namespace bdAsegasa.db
|
|
{
|
|
public partial class vf_liquidacionesciasextendidas
|
|
{
|
|
public string Compañia
|
|
{
|
|
get
|
|
{
|
|
if (this.NumeroCias == 0) return "";
|
|
if (this.NumeroCias == 1) return this.Cia;
|
|
return "Varias";
|
|
}
|
|
}
|
|
}
|
|
}
|