protected override IEnumerable <RectangleShape> FillStore() { return(ShapelyService.GetAllRectangles()); }
protected override void DataUpdate() { ShapelyService.UpdateRectangle(this); }
protected override void DataInsert() { ShapelyService.InsertRectangle(this); }
protected override RectangleShape DataSelect(Guid id) { return(ShapelyService.GetRectangle(id)); }
protected override void DataDelete() { ShapelyService.DeleteRectangle(this); }