Exemplo n.º 1
0
        public void ChangeCropKind(int id)
        {
            CropInformation cropInfo;
            var             isOk = CropInformationList.Crops.TryGetValue(id, out cropInfo);

            if (!isOk)
            {
                throw new Exception("not found the object with this id");
            }
            this.id   = info.Id;
            this.info = cropInfo;
        }
Exemplo n.º 2
0
 public void ChangeCropKind(CropInformation info)
 {
     this.id   = info.Id;
     this.info = info;
 }