This commit is contained in:
Paul Schneider 2016-08-12 23:02:05 +02:00
commit c08a692bfa

View file

@ -1,16 +0,0 @@
using System.Collections.Generic;
namespace Yavsc.Models
{ 
public interface IBlogspotRepository
{
void Add(Blog item);
IEnumerable<Blog> GetAll();
Blog Find(string key);
Blog Remove(string key);
void Update(Blog item);
}
}