Exemplo n.º 1
0
        public void VoteMethodTest()
        {
            _facemashDalService.Vote("urf23");
            var cat = _facemashDalService.GetById("urf23");

            Assert.NotNull(cat);
            Assert.True(cat.Score > 0);
        }
Exemplo n.º 2
0
 public IActionResult Vote(string id)
 {
     try
     {
         _facemashDalService.Vote(id);
         return(Ok());
     }
     catch (Exception ex)
     {
         throw;
     }
 }