public int DeleteNotification(BLLNotice objbll)
    {
        DALNotice objdal = new DALNotice();

        return(objdal.DeleteNotification(objbll));
    }
    public List <BLLNotice> SelectNotificationbyid(BLLNotice objbll)
    {
        DALNotice objdal = new DALNotice();

        return(objdal.SelectNotificationbyid(objbll));
    }
    public List <BLLNotice> SelectNotification()
    {
        DALNotice objdal = new DALNotice();

        return(objdal.SelectNotification());
    }
    public int UpdateNotice(BLLNotice objbll)
    {
        DALNotice objdal = new DALNotice();

        return(objdal.UpdateNotice(objbll));
    }
    public int InsertNotification(BLLNotice objbll)
    {
        DALNotice objdal = new DALNotice();

        return(objdal.InsertNotification(objbll));
    }