document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. namespace UnitTestDemo
  2. {
  3.     using System;
  4.  
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             var db = UnityHelper.Resolve<DataProvider>();
  10.             var result = db.RetreiveSomeData(1);
  11.             Console.WriteLine(string.Join(System.Environment.NewLine, result));
  12.         }
  13.     }
  14. }
');