Zbiór zmian 888 dla trunk/eCard/eCardMVC/Platnosci.Core
- Data:
- 2009-11-23 16:27:53 (16 years ago)
- Lokalizacja:
- trunk/eCard/eCardMVC/Platnosci.Core
- Pliki:
-
- 2 zmodyfikowane
-
Interface/IRepository.cs (zmodyfikowane) (1 diff)
-
Linq/Repository.cs (zmodyfikowane) (1 diff)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/eCard/eCardMVC/Platnosci.Core/Interface/IRepository.cs
r877 r888 18 18 void Delete(T entity); 19 19 20 void Update(T entity);20 void SubmitChanges(); 21 21 22 22 T FindOne(int id); -
trunk/eCard/eCardMVC/Platnosci.Core/Linq/Repository.cs
r877 r888 66 66 public void Delete(T entity) 67 67 { 68 _dataContext.Insert(entity);68 throw new NotImplementedException(); 69 69 } 70 public void Update(T entity)70 public void SubmitChanges() 71 71 { 72 72 _dataContext.SubmitChanges();
