Zbiór zmian 970 dla trunk/eCard/eCardMVC/adMoto.Payments.Core/Interfaces
- Data:
- 2009-12-23 11:26:06 (16 years ago)
- Lokalizacja:
- trunk/eCard/eCardMVC/adMoto.Payments.Core
- Pliki:
-
- 2 dodane
- 4 skopiowane
-
. (dodane)
-
Interfaces (dodane)
-
Interfaces/IDataContext.cs (skopiowane) (skopiowane from trunk/eCard/eCardMVC/Platnosci.Core/Interface/IDataContext.cs) (2 diffs)
-
Interfaces/IIdentifiable.cs (skopiowane) (skopiowane from trunk/eCard/eCardMVC/Platnosci.Core/Interface/IIdentifiable.cs) (1 diff)
-
Interfaces/IRepository.cs (skopiowane) (skopiowane from trunk/eCard/eCardMVC/Platnosci.Core/Interface/IRepository.cs) (2 diffs)
-
Interfaces/ITranslateManager.cs (skopiowane) (skopiowane from trunk/eCard/eCardMVC/Platnosci.Core/Interface/ITranslateManager.cs) (1 diff)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/eCard/eCardMVC/adMoto.Payments.Core/Interfaces/IDataContext.cs
r949 r970 2 2 using System.Collections.Generic; 3 3 using System.Linq; 4 using Platnosci.Core.Linq;4 using adMoto.Payments.Core.Data; 5 5 6 namespace Platnosci.Core.Interface6 namespace adMoto.Payments.Core.Interfaces 7 7 { 8 8 public interface IDataContext … … 12 12 void Insert<T>(T item) where T : class; 13 13 void Delete<T>(T item) where T : class; 14 IQueryable< vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer);14 IQueryable<Invoice> FindInvoiceByNipNumber(string nip, string numer); 15 15 List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury); 16 16 int GetOrdernumber(string description, int? idfaktury, DateTime? data); -
trunk/eCard/eCardMVC/adMoto.Payments.Core/Interfaces/IIdentifiable.cs
r949 r970 1 namespace Platnosci.Core.Interface1 namespace adMoto.Payments.Core.Interfaces 2 2 { 3 3 public interface IIdentifiable -
trunk/eCard/eCardMVC/adMoto.Payments.Core/Interfaces/IRepository.cs
r949 r970 3 3 using System.Linq; 4 4 using System.Linq.Expressions; 5 using Platnosci.Core.Linq;5 using adMoto.Payments.Core.Data; 6 6 7 namespace Platnosci.Core.Interface7 namespace adMoto.Payments.Core.Interfaces 8 8 { 9 9 public interface IRepository<T> where T : IIdentifiable … … 37 37 IQueryable<T> Find(Expression<Func<T, bool>> expression); 38 38 39 IQueryable< vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer);39 IQueryable<Invoice> FindInvoiceByNipNumber(string nip, string numer); 40 40 41 41 List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury); -
trunk/eCard/eCardMVC/adMoto.Payments.Core/Interfaces/ITranslateManager.cs
r949 r970 1 namespace Platnosci.Core.Interface1 namespace adMoto.Payments.Core.Interfaces 2 2 { 3 3 public interface ITranslateManager
