public async Task <Result> RemoveProduct(string CustomerId, string UserId, string ProductId, RemoveProductParams data) => await _avOperation.RemoveProductAsync(CustomerId, UserId, ProductId, data);
public Result RemoveProduct(string CustomerId, string UserId, string ProductId, RemoveProductParams data) { var op = new STaaSOperation(); return(op.RemoveProduct(CustomerId, UserId, ProductId, data)); }