annotate Agendas/trunk/src/Agendas.Repositories.Memory/PatrocinadorRepository.cs @ 198:cd96cfc8a1f5
Se agrega la fecha de termino a Google Calendar.
author |
alabra |
date |
Mon, 15 Aug 2011 15:35:17 -0400 |
parents |
2d1adbaf0373 |
children |
5346c0500594 |
rev |
line source |
137
|
1 using AltNetHispano.Agendas.Domain;
|
|
2 using AltNetHispano.Agendas.Domain.Repositories;
|
|
3
|
|
4 namespace AltNetHispano.Agendas.Repositories.Memory
|
|
5 {
|
|
6 public class PatrocinadorRepository : RepositoryBase<Patrocinador>, IPatrocinadorRepository
|
|
7 {
|
|
8 public static void Clear()
|
|
9 {
|
|
10 Objects.Clear();
|
|
11 }
|
|
12 }
|
|
13 } |