コード例 #1
0
 public RedirectToRouteResult AddCommentAndAttachment(Guid id, string comment, HttpPostedFileBase attachment)
 {
     _workOrderService.AddCommentAndAttachment(id, GetCurrentTechnicianId(), comment, attachment);
     return(RedirectToAction("Index", new { id }));
 }