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