Exemple #1
0
        public async Task <ActionResult <string> > AddComment([FromBody] FnbComment c)
        {
            var fnb = await dbHelper.GetFnbByIdAsync(c.FnbId);

            if (fnb == null)
            {
                return("FnB Not found");
            }

            var r = await dbHelper.AddFnbCommentAsync(c.FnbId, c.CommenterId, c.Comment, c.Rating, c.BaseRating);

            return(r.Message);
        }