public void TheDocGia_Delete(TheDocGiaDTO dto)
    {
        TheDocGiaDAO dao = new TheDocGiaDAO();

        dao.Delete(dto);
    }
    public void TheDocGia_Update(TheDocGiaDTO dto)
    {
        TheDocGiaDAO dao = new TheDocGiaDAO();

        dao.Update(dto);
    }
    public void TheDocGia_Insert(ref TheDocGiaDTO dto)
    {
        TheDocGiaDAO dao = new TheDocGiaDAO();

        dao.Insert(dto);
    }
    public List <TheDocGiaDTO> TheDocGia_GetByProperties(List <string> lstKey, List <object> Values, List <bool> Exact)
    {
        TheDocGiaDAO dao = new TheDocGiaDAO();

        return((List <TheDocGiaDTO>)dao.GetByProperties(lstKey, Values, Exact));
    }
    public List <TheDocGiaDTO> TheDocGia_GetAll()
    {
        TheDocGiaDAO dao = new TheDocGiaDAO();

        return((List <TheDocGiaDTO>)dao.GetAll());
    }
Example #6
0
 public TheDocGiaBUS()
 {
     dp = new TheDocGiaDAO();
 }