public ActionResult Index(Guid projectInfoId) { var model = _iProjectFileService.GetAll(a => a.ProjectInfoId == projectInfoId); ViewBag.projectInfoId = projectInfoId; ViewBag.UserId = _userInfo.UserId; return(View(model)); }
public ActionResult Get() { return(Ok(projectfileService.GetAll())); }