コード例 #1
0
ファイル: MasterService.cs プロジェクト: EliGosK/STM_ATDB
        public UpdateWorkShiftByEmpResult UpdateAssignWorkShiftByEmp(AssignWorkShiftByEmp entity)
        {
            using (TransactionEntities context = new TransactionEntities())
            {
                var result = context.UpdateWorkShiftByEmp(
                    prodDate: entity.ProdDate
                    , empCode: entity.EmpCode
                    , shiftCode: entity.ShiftCode
                    , userCode: entity.UpdateBy
                    ).FirstOrDefault();

                return(result);
            }
        }