using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Identity.Client;

namespace HRM.BO.Basic
{
    public class HrNotification : BasicBaseObject
    {
        public DateTime EntryDate { get; set; }
        public string NotificationText { get; set; }
        public string NotificationTextDetail { get; set; }
        public DateTime PublishDate { get; set; }
        public DateTime? PublishEndDate { get; set; }
        public bool ShowAsNewDays { get; set; }
        public int TotalNewDays { get; set; }
        public EnumHrNotificationType NotificationType { get; set; }

    }

    public interface IHrNotificationService
    {
        List<HrNotification> GetAll();
        HrNotification Get(int id);
        int Save(HrNotification hrNotification);
        void Delete(int id);

    }
}