Example #1
0
 protected override IEnumerable <RectangleShape> FillStore()
 {
     return(ShapelyService.GetAllRectangles());
 }
Example #2
0
 protected override void DataUpdate()
 {
     ShapelyService.UpdateRectangle(this);
 }
Example #3
0
 protected override void DataInsert()
 {
     ShapelyService.InsertRectangle(this);
 }
Example #4
0
 protected override RectangleShape DataSelect(Guid id)
 {
     return(ShapelyService.GetRectangle(id));
 }
Example #5
0
 protected override void DataDelete()
 {
     ShapelyService.DeleteRectangle(this);
 }