public IHttpActionResult Get(int id)
        {
            DTO_CUS_HRM_LIST_BoPhan tbl_CUS_HRM_LIST_BoPhan = BS_CUS_HRM_LIST_BoPhan.get_CUS_HRM_LIST_BoPhan(db, PartnerID, id);

            if (tbl_CUS_HRM_LIST_BoPhan == null)
            {
                return(NotFound());
            }

            return(Ok(tbl_CUS_HRM_LIST_BoPhan));
        }
 public IQueryable <DTO_CUS_HRM_LIST_BoPhan> Get()
 {
     return(BS_CUS_HRM_LIST_BoPhan.get_CUS_HRM_LIST_BoPhan(db, PartnerID, QueryStrings));
 }