using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using GreenTree.Nachtragsmanagement.Core.Domain.Misc;
namespace GreenTree.Nachtragsmanagement.Services.Misc
{
public interface IMiscService
{
#region MailNotification
///
/// Gets all mailNotifications
///
IList GetAllMailNotifications();
///
/// Gets a mailNotification by specified Id
///
/// MailNotification identifier.
MailNotification GetMailNotificationById(int id);
///
/// Gets all mailNotifications to the specified ids
///
IList GetMailNotificationsByIds(int[] ids);
///
/// Insert a mailNotification
///
/// MailNotification.
void InsertMailNotification(MailNotification mailNotification);
///
/// Update a mailNotification
///
/// MailNotification.
void UpdateMailNotification(MailNotification mailNotification);
///
/// Delete a mailNotification
///
/// MailNotification.
void DeleteMailNotification(MailNotification mailNotification);
#endregion
}
}