Index: trunk/eCard/eCardMVC/Platnosci.Tests/Web/TestMethods.cs
===================================================================
--- trunk/eCard/eCardMVC/Platnosci.Tests/Web/TestMethods.cs (revision 969)
+++ trunk/eCard/eCardMVC/Platnosci.Tests/Web/TestMethods.cs (revision 970)
@@ -1,4 +1,5 @@
-﻿using NUnit.Framework;
-using Platnosci.Core.Linq;
+﻿using adMoto.Payments.Core;
+using adMoto.Payments.Core.Data;
+using NUnit.Framework;
 
 namespace Platnosci.Tests.Web
@@ -14,15 +15,14 @@
         {
             var fake = new FakeDataContext();
-            var vPlatnosciEcardRepository = new Repository<vPlatnosciEcard>(fake);
+            var vPlatnosciEcardRepository = new Repository<Invoice>(fake);
 
             var platnosc = _function.CreateInvoice(123, "nip", "", 0, 0);
             vPlatnosciEcardRepository.Insert(platnosc);
 
-            System.Diagnostics.Debug.WriteLine("rep.Count: " + vPlatnosciEcardRepository.Count());            
+            System.Diagnostics.Debug.WriteLine("rep.Count: " + vPlatnosciEcardRepository.Count());
             var pl = vPlatnosciEcardRepository.FindOne(123);
             System.Diagnostics.Debug.WriteLine("Wartosc nip ma byc 'nip'. Jest " + pl.nip);
             Assert.That(pl.nip, Is.EqualTo("nip"));
-        }        
-
+        }
     }
 }
