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