diff --git a/Yavsc/Model/Blog/IBlogspotRepository.cs b/Yavsc/Model/Blog/IBlogspotRepository.cs deleted file mode 100644 index e02d9a47..00000000 --- a/Yavsc/Model/Blog/IBlogspotRepository.cs +++ /dev/null @@ -1,16 +0,0 @@ - -using System.Collections.Generic; - -namespace Yavsc.Models - {  - - public interface IBlogspotRepository - { - void Add(Blog item); - IEnumerable GetAll(); - Blog Find(string key); - Blog Remove(string key); - void Update(Blog item); - } - -}