예제 #1
0
        public CellResponse(AlreadyExistException ex)
        {
            status = MoveStatuses.Error;

            Cell = ex.Cell;

            Error = ex.Message;
        }
예제 #2
0
 public void UpdateMoveStatus(int routePlanId, MoveStatuses status)
 {
     Clients.All.updateMoveStatus(routePlanId, status);
 }
예제 #3
0
 public CellResponse(MoveStatuses status, Cell сell)
 {
     Cell        = сell;
     this.status = status;
 }
예제 #4
0
 public CellResponse(MoveStatuses status, Cell сell, TopUserViewModel results)
 {
     Cell        = сell;
     this.status = status;
     Results     = results;
 }
예제 #5
0
 public CellResponse(Cell сell)
 {
     status = MoveStatuses.Success;
     Cell   = сell;
 }
예제 #6
0
        public CellResponse(NoSolutionException ex)
        {
            this.status = MoveStatuses.NoSolution;

            Error = ex.Message;
        }
예제 #7
0
        public CellResponse(Exception ex)
        {
            status = MoveStatuses.Error;

            Error = ex.Message;
        }