Index: trunk/eCard/eCardMVC/Platnosci.Tests/Web/MerchantControllerTests.cs
===================================================================
--- trunk/eCard/eCardMVC/Platnosci.Tests/Web/MerchantControllerTests.cs (revision 969)
+++ trunk/eCard/eCardMVC/Platnosci.Tests/Web/MerchantControllerTests.cs (revision 970)
@@ -1,5 +1,6 @@
-﻿using NUnit.Framework;
-using Platnosci.Core.Linq;
-using Platnosci.Core.Interface;
+﻿using adMoto.Payments.Core;
+using adMoto.Payments.Core.Data;
+using adMoto.Payments.Core.Interfaces;
+using NUnit.Framework;
 using Platnosci.Controllers;
 using Platnosci.Models;
@@ -19,9 +20,9 @@
         {
             //Arrange
-            IRepository<vPlatnosciEcard> repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext());
-            vPlatnosciEcard platnosc = _function.CreateInvoice(123, "nip1", "", 0, 0);
+            IRepository<Invoice> repVPayment = new Repository<Invoice>(new FakeDataContext());
+            var platnosc = _function.CreateInvoice(123, "nip1", "", 0, 0);
             repVPayment.Insert(platnosc);
             
-            Payer payer = _function.CreatePayer(123, "test", "test");
+            var payer = _function.CreatePayer(123, "test", "test");
             
             var controller = new MerchantController(repVPayment, null, _translateManager);
@@ -42,9 +43,9 @@
         {
             //Arrange
-            IRepository<vPlatnosciEcard> repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext());
-            vPlatnosciEcard platnosc = _function.CreateInvoice(12, "nip1", "", 0, 0);
+            IRepository<Invoice> repVPayment = new Repository<Invoice>(new FakeDataContext());
+            var platnosc = _function.CreateInvoice(12, "nip1", "", 0, 0);
             repVPayment.Insert(platnosc);
 
-            Payer payer = _function.CreatePayer(123, "test", "test");
+            var payer = _function.CreatePayer(123, "test", "test");
 
             var controller = new MerchantController(repVPayment, null, _translateManager);
