Ejemplo n.º 1
0
    public int DeleteNotification(BLLNotice objbll)
    {
        DALNotice objdal = new DALNotice();

        return(objdal.DeleteNotification(objbll));
    }
Ejemplo n.º 2
0
    public List <BLLNotice> SelectNotificationbyid(BLLNotice objbll)
    {
        DALNotice objdal = new DALNotice();

        return(objdal.SelectNotificationbyid(objbll));
    }
Ejemplo n.º 3
0
    public List <BLLNotice> SelectNotification()
    {
        DALNotice objdal = new DALNotice();

        return(objdal.SelectNotification());
    }
Ejemplo n.º 4
0
    public int UpdateNotice(BLLNotice objbll)
    {
        DALNotice objdal = new DALNotice();

        return(objdal.UpdateNotice(objbll));
    }
Ejemplo n.º 5
0
    public int InsertNotification(BLLNotice objbll)
    {
        DALNotice objdal = new DALNotice();

        return(objdal.InsertNotification(objbll));
    }