init
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System.Data;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.Core;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses.MulasztasiErtesitokCOs
|
||||
{
|
||||
public class GondviseloAdatokCo : MulasztasFejCo
|
||||
{
|
||||
public GondviseloAdatokCo(DataRow row) : base(row)
|
||||
{
|
||||
GondviseloId = SDAConvert.ToInt32(row.Field<int>("GondviseloId"));
|
||||
GondviseloNeve = SDAConvert.ToString(row.Field<string>("GondviseloNev")).ReplaceMultipleSpacesAndTrim();
|
||||
GondviseloAllandoCim = SDAConvert.ToString(row.Field<string>("GondviseloAllandoCim")).ReplaceMultipleSpacesAndTrim();
|
||||
GondviseloTelefon = SDAConvert.ToString(row.Field<string>("GondviseloTelefon")).ReplaceMultipleSpacesAndTrim();
|
||||
GondviseloRokonsagiFoka = SDAConvert.ToString(row.Field<string>("GondviseloRokonsagiFoka")).ReplaceMultipleSpacesAndTrim();
|
||||
}
|
||||
|
||||
public int GondviseloId { get; set; }
|
||||
public string GondviseloNeve { get; set; }
|
||||
public string GondviseloAllandoCim { get; set; }
|
||||
public string GondviseloTelefon { get; set; }
|
||||
public string GondviseloRokonsagiFoka { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user