public async Task <bool> AddCartId(Guid userId, Guid cartId) { try { return(await _userDAL.AddCartId(userId, cartId)); } catch (Exception ex) { throw ex; } }