Ejemplo n.º 1
0
 public bool SetUserImage(int userId, int imageId)
 {
     try
     {
         var link = new Link();
         link.UsId = userId;
         link.AwId = imageId;
         _imageDao.SaveLink(link);
         return(true);
     }
     catch (Exception e)
     {
         logIt(e.Message);
         return(false);
     }
 }