public async Task <bool> Dash(DashReq req)
 {
     return(await CallRemoteProcedure <DashReq, bool>((int)RpcTypes.Dash, req));
 }
 public abstract Task <bool> Dash(DashReq req);
 public bool Dash(DashReq req)
 {
     return(CallRemoteProcedure <DashReq, bool>((int)RpcTypes.Dash, req));
 }