コード例 #1
0
        public BaseResponse RemovePhysicalExamMin(BaseRemoveRequest request)
        {
            foreach (var key in request.KeyList)
            {
                var physicalExamMinRecord = this.repository.GetPhysicalExamMinRecordByKey(key);
                this.RemoveWithoutCommit(physicalExamMinRecord);
            }

            this.unitOfWork.Commit();
            return(this.BuildSuccessResponse());
        }
コード例 #2
0
 public BaseResponse RemovePhysicalExamMin(BaseRemoveRequest request)
 {
     return(service.RemovePhysicalExamMin(request));
 }