This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/oop/notenbewertung/notenbewertung/Person.cs

20 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace notenbewertung
{
abstract class Person
{
public string Vorname { get; set; }
public string Name { get; set; }
public Person(string _vorname, string _name)
{
this.Vorname = _vorname;
this.Name = _name;
}
}
}