Pokaż
Ignoruj:
Data:
2009-12-23 11:26:06 (16 years ago)
Autor:
marek
Opis:

re #215 - dodanie nowego projektu z lepsza nazwa i typem projektu

Lokalizacja:
trunk/eCard/eCardMVC/adMoto.Payments.Core
Pliki:
2 dodane
4 skopiowane

Legenda:

Bez zmian
Dodane
Usunięte
  • trunk/eCard/eCardMVC/adMoto.Payments.Core/Interfaces/IDataContext.cs

    r949 r970  
    22using System.Collections.Generic; 
    33using System.Linq; 
    4 using Platnosci.Core.Linq; 
     4using adMoto.Payments.Core.Data; 
    55 
    6 namespace Platnosci.Core.Interface 
     6namespace adMoto.Payments.Core.Interfaces 
    77{ 
    88    public interface IDataContext 
     
    1212        void Insert<T>(T item) where T : class; 
    1313        void Delete<T>(T item) where T : class; 
    14         IQueryable<vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer); 
     14        IQueryable<Invoice> FindInvoiceByNipNumber(string nip, string numer); 
    1515        List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury); 
    1616        int GetOrdernumber(string description, int? idfaktury, DateTime? data); 
  • trunk/eCard/eCardMVC/adMoto.Payments.Core/Interfaces/IIdentifiable.cs

    r949 r970  
    1 namespace Platnosci.Core.Interface 
     1namespace adMoto.Payments.Core.Interfaces 
    22{ 
    33    public interface IIdentifiable 
  • trunk/eCard/eCardMVC/adMoto.Payments.Core/Interfaces/IRepository.cs

    r949 r970  
    33using System.Linq; 
    44using System.Linq.Expressions; 
    5 using Platnosci.Core.Linq; 
     5using adMoto.Payments.Core.Data; 
    66 
    7 namespace Platnosci.Core.Interface 
     7namespace adMoto.Payments.Core.Interfaces 
    88{ 
    99    public interface IRepository<T> where T : IIdentifiable 
     
    3737        IQueryable<T> Find(Expression<Func<T, bool>> expression); 
    3838 
    39         IQueryable<vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer); 
     39        IQueryable<Invoice> FindInvoiceByNipNumber(string nip, string numer); 
    4040 
    4141        List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury); 
  • trunk/eCard/eCardMVC/adMoto.Payments.Core/Interfaces/ITranslateManager.cs

    r949 r970  
    1 namespace Platnosci.Core.Interface 
     1namespace adMoto.Payments.Core.Interfaces 
    22{ 
    33    public interface ITranslateManager