You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Übungen_LF6_WinFormanwendung
|
|
|
|
|
{
|
|
|
|
|
class Bank
|
|
|
|
|
{
|
|
|
|
|
//Objektproperties
|
|
|
|
|
public string BLZ { get; set; }
|
|
|
|
|
public string BANKNAME { get; set; }
|
|
|
|
|
public string SITZ { get; set; }
|
|
|
|
|
private string PLZ { get; set; }
|
|
|
|
|
private string MERKMAL { get; set; }
|
|
|
|
|
private string KURZNAME { get; set; }
|
|
|
|
|
private string PAN { get; set; }
|
|
|
|
|
private string BIC { get; set; }
|
|
|
|
|
private string PRUEFZIFFER { get; set; }
|
|
|
|
|
private string DATENSATZNR { get; set; }
|
|
|
|
|
private string KENNZEICHENAENDERUNG { get; set; }
|
|
|
|
|
private string BLZLOESCHUNG { get; set; }
|
|
|
|
|
private string NACHFOLGEBLZ { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Standartkonstruktor
|
|
|
|
|
public Bank()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Bank(string[] CSVDATA)
|
|
|
|
|
{
|
|
|
|
|
// Einlesen und Erstellen eines Objektes mit CSVDaten
|
|
|
|
|
BLZ = CSVDATA[0];
|
|
|
|
|
MERKMAL = CSVDATA[1];
|
|
|
|
|
BANKNAME = CSVDATA[2];
|
|
|
|
|
PLZ = CSVDATA[3];
|
|
|
|
|
SITZ = CSVDATA[4];
|
|
|
|
|
KURZNAME = CSVDATA[5];
|
|
|
|
|
PAN = CSVDATA[6];
|
|
|
|
|
BIC = CSVDATA[7];
|
|
|
|
|
PRUEFZIFFER = CSVDATA[8];
|
|
|
|
|
DATENSATZNR = CSVDATA[9];
|
|
|
|
|
KENNZEICHENAENDERUNG = CSVDATA[10];
|
|
|
|
|
BLZLOESCHUNG = CSVDATA[11];
|
|
|
|
|
NACHFOLGEBLZ = CSVDATA[12];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|