Zbiór zmian 970 dla trunk/eCard/eCardMVC/Platnosci/Controllers/MerchantController.cs
- Data:
- 2009-12-23 11:26:06 (16 years ago)
- Pliki:
-
- 1 zmodyfikowane
-
trunk/eCard/eCardMVC/Platnosci/Controllers/MerchantController.cs (zmodyfikowane) (4 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/eCard/eCardMVC/Platnosci/Controllers/MerchantController.cs
r959 r970 2 2 using System.Linq; 3 3 using System.Web.Mvc; 4 using adMoto.Payments.Core; 5 using adMoto.Payments.Core.Data; 6 using adMoto.Payments.Core.Interfaces; 4 7 using Platnosci.Models; 5 using Platnosci.Core.Linq;6 using Platnosci.Core.Interface;7 using System.Configuration;8 using System.Net;9 using System.IO;10 using System.Threading;11 8 12 9 namespace Platnosci.Controllers … … 15 12 public class MerchantController : Controller 16 13 { 17 private readonly IRepository< vPlatnosciEcard> _repVPayment;14 private readonly IRepository<Invoice> _repVPayment; 18 15 private readonly IRepository<PlatnosciEcard> _repPayment; 19 16 private readonly FunkcjePlatnosci _funkcjePlatnosci; … … 23 20 public MerchantController() 24 21 { 25 _repVPayment = new Repository< vPlatnosciEcard>(new DataContext());22 _repVPayment = new Repository<Invoice>(new DataContext()); 26 23 _repPayment = new Repository<PlatnosciEcard>(new DataContext()); 27 24 _funkcjePlatnosci = new FunkcjePlatnosci(_repPayment); … … 29 26 _eCardData = new eCardData(_repPayment); 30 27 } 31 public MerchantController(IRepository< vPlatnosciEcard> repVPayment, IRepository<PlatnosciEcard> repPayment, ITranslateManager translate)28 public MerchantController(IRepository<Invoice> repVPayment, IRepository<PlatnosciEcard> repPayment, ITranslateManager translate) 32 29 { 33 30 _repVPayment = repVPayment;
