Pretty much finished the actual newsletter. Still need to work on the UI !wip

This commit is contained in:
Jamie 2018-03-22 12:27:01 +00:00
parent 9767380f83
commit 1528cdfc03
15 changed files with 463 additions and 24 deletions

View file

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Ombi.Helpers;
@ -6,7 +7,7 @@ using Ombi.Store.Entities;
namespace Ombi.Store.Repository
{
public interface INotificationTemplatesRepository
public interface INotificationTemplatesRepository : IDisposable
{
IQueryable<NotificationTemplates> All();
Task<IEnumerable<NotificationTemplates>> GetAllTemplates();