Example #1
0
        private Clamp GetRandomClamp()
        {
            var c = new Clamp {
                ID = ++_currentId, TimeStamp = DateTime.Now, CurrentShirt = Shirt.GetRandomShirt(), IsEmpty = GetRandomBool()
            };

            return(c);
        }
Example #2
0
 public SampleShirtListBoxViewModel()
 {
     CurrentShirt = Shirt.GetRandomShirt();
 }