author | Markus Bröker<broeker.markus@googlemail.com> |
Wed, 29 Mar 2017 12:05:27 +0200 | |
changeset 1 | 80c685d55d63 |
parent 0 | cfa10fbf52b3 |
child 2 | 0907765a8b2e |
permissions | -rwxr-xr-x |
0 | 1 |
/** |
2 |
* Payment.cs |
|
3 |
* |
|
4 |
* @author Markus Bröker<broeker.markus@googlemail.com> |
|
5 |
* @copyright Copyright(C) 2017 4Customers UG |
|
6 |
* |
|
7 |
*/ |
|
8 |
using System; |
|
9 |
using System.Collections.Generic; |
|
10 |
using System.Linq; |
|
11 |
using System.Text; |
|
12 |
using System.Threading.Tasks; |
|
13 |
||
14 |
namespace Sales |
|
15 |
{ |
|
16 |
class Payment |
|
17 |
{ |
|
1
80c685d55d63
Sinnvolles Beispiel für Function-Pointer in C#
Markus Bröker<broeker.markus@googlemail.com>
parents:
0
diff
changeset
|
18 |
public enum PaymentType { NOW, WEEK, MONTH, LATER }; |
0 | 19 |
} |
20 |
} |