Advertisement
Guest User

Untitled

a guest
May 6th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.56 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Eksamen2015 {
  8.     class Program {
  9.         static void Main(string[] args) {
  10.  
  11.             //lists
  12.             public List<User> userList = new List<User>();
  13.             public List<Product> productList = new List<Product>();
  14.             public List<Transaction> transactionList = new List<Transaction>();
  15.  
  16.             //Initialise products
  17.             ReadWriteLog rwlog = new ReadWriteLog();
  18.            
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement