Add project files.
This commit is contained in:
26
Fizetes/Program.cs
Normal file
26
Fizetes/Program.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Fizetes
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
FizetesMod f1 = new KartyasFizetes("Kártyás Fizetés");
|
||||
FizetesMod f2 = new BankiUtalas("Banki utalás");
|
||||
FizetesMod f3 = new PayPalFizetes("Fizetés PayPal-al");
|
||||
|
||||
List<FizetesMod> list = new List<FizetesMod>();
|
||||
|
||||
list.Add(f1);
|
||||
list.Add(f2);
|
||||
list.Add(f3);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user