Zbiór zmian 970 dla trunk/eCard/eCardMVC/Platnosci.Tests/Web/Function.cs
- Data:
- 2009-12-23 11:26:06 (16 years ago)
- Pliki:
-
- 1 zmodyfikowane
-
trunk/eCard/eCardMVC/Platnosci.Tests/Web/Function.cs (zmodyfikowane) (3 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/eCard/eCardMVC/Platnosci.Tests/Web/Function.cs
r957 r970 1 1 using System; 2 using Platnosci.Core.Linq; 2 using adMoto.Payments.Core; 3 using adMoto.Payments.Core.Data; 3 4 using System.Web.Mvc; 4 5 using Moq; … … 8 9 public class Function 9 10 { 10 public vPlatnosciEcardCreateInvoice(int id, string nip, string invoiceNumber, decimal brutto, byte systemKsiegowy)11 public Invoice CreateInvoice(int id, string nip, string invoiceNumber, decimal brutto, byte systemKsiegowy) 11 12 { 12 var platnosc = new vPlatnosciEcard();13 var platnosc = new Invoice(); 13 14 platnosc.ID_faktury = id; 14 15 platnosc.nip = nip; … … 19 20 return platnosc; 20 21 } 21 public vPlatnosciEcardCreateForeignInvoice(int id, string nip, string invoiceNumber, decimal brutto, byte systemKsiegowy, decimal walutaBrutto, string currency)22 public Invoice CreateForeignInvoice(int id, string nip, string invoiceNumber, decimal brutto, byte systemKsiegowy, decimal walutaBrutto, string currency) 22 23 { 23 var platnosc = new vPlatnosciEcard();24 var platnosc = new Invoice(); 24 25 platnosc.ID_faktury = id; 25 26 platnosc.nip = nip;
