Last-Modified: Mon, 03 Aug 2026 11:33:01 GMT Expires: Thu, 31 Jul 2036 11:33:01 GMT function.png « Images « Tango.MachineStudio.Technician « Modules « MachineStudio « Visual_Studio « Software - Tango - Twine softwares
aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Images/function.png
blob: 92ccdbf4bbd9bada42aeca9ccbeb058b1f445958 (plain)
ofshex dumpascii
0000 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 40 00 00 00 40 08 03 00 00 00 9d b7 81 .PNG........IHDR...@...@........
0020 ec 00 00 00 03 73 42 49 54 08 08 08 db e1 4f e0 00 00 00 09 70 48 59 73 00 00 01 bb 00 00 01 bb .....sBIT.....O.....pHYs........
0040 01 3a ec e3 e2 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 65 00 77 77 77 2e 69 6e 6b 73 63 61 .:.......tEXtSoftware.www.inksca
0060 70 65 2e 6f 72 67 9b ee 3c 1a 00 00 02 85 50 4c 54 45 ff ff ff ff 00 00 ff 00 00 ff 80 00 ff 40 pe.org..<.....PLTE.............@
0080 40 ff 80 00 ff 66 33 ff 49 24 ff 55 1c e6 4d 33 ff 4d 33 ff 55 2b ff 4e 27 ff 55 22 ff 5a 2
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.TFS;

namespace Tango.MachineStudio.UI.TFS
{
    public class WorkItemValidationAttribute : ValidationAttribute
    {
        public override bool IsValid(object value)
        {
            WorkItem item = value as WorkItem;

            if (String.IsNullOrWhiteSpace(item.Title))
            {
                ErrorMessage = "Title is required.";
                return false;
            }

            if (item.AssignedTo == null)
            {
                ErrorMessage = "Assigned To field is required.";
                return false;
            }

            if (String.IsNullOrWhiteSpace(item.StepsToReproduce))
            {
                ErrorMessage = "Please enter steps to reproduce.";
                return false;
            }

            return true;
        }
    }
}
f3 b3 cd a5 0c 85 c2 26 4b dd e6 c5 b9 46 83 e9 76 66 99 28 1e 63 ca b0 49 d8 e6 31 8d e6 ce 00 .......&K....F..vf.(.c..I..1.... 06e0 65 2c ca d9 96 ed 57 f0 4e 86 99 e2 46 93 69 75 6f cd 0e 0f f0 0b 1d b7 af b6 48 8d 6c 11 ad 9c e,....W.N...F.iuo.........H.l... 0700 bf 35 b0 77 a6 a4 d5 e5 9b 6d a6 23 2b d6 68 49 26 a3 ed be 58 44 ed be fc c2 a1 11 c9 85 a3 01 .5.w.....m.#+.hI&...XD.......... 0720 ae 3c de 5f ba bc bf f6 79 7f f1 6c 80 ab 6f 03 5c be eb 77 fd ff 0f 48 ca de e2 79 04 24 3f 00 .<._....y..l..o.\..w...H...y.$?. 0740 00 00 00 49 45 4e 44 ae 42 60 82 ...IEND.B`.