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