示例#1
0
 public SystemView ModifyCell([FromQuery] int x, [FromQuery] int y, [FromQuery] string cellType)
 {
     Models.System s = GetSystem();
     s.ModifyCell(x - 1, y - 1, cellType);
     return(SetSystem(s));
 }