Exemplo n.º 1
0
 public async Task UpdateAsync(PlotterStatus status)
 {
     long plotterId = long.Parse(Context.UserIdentifier);
     await PlotterService.UpdatePlotterAsync(Context.ConnectionId, plotterId, status);
 }
Exemplo n.º 2
0
        public Task <PlotterUpdateResult> UpdateAsync(PlotterStatus status)
        {
            long plotterId = long.Parse(Context.UserIdentifier);

            return(PlotterService.UpdatePlotterAsync(Context.ConnectionId, plotterId, status));
        }