示例#1
0
        public JsonResult LoadDatLich(int id)
        {
            var nhanvien = _lienHeRepository.GetbyId(id);
            var listpv   = _lienHeRepository.GetAllNguoiPV();

            return(new JsonResult(new
            {
                nguoipv = listpv,
                ngaypv = nhanvien.ThoigianPV
            }));
        }