Example #1
0
 /// <summary>
 /// Get AppliedTag by key.
 /// </summary>
 /// <param name="key">The AppliedTag's key.</param>
 /// <returns>The AppliedTag with the specified key.</returns>
 public AppliedTag Get(long key)
 {
     return(m_service.GetAppliedTagByKey(key));
 }
        public void GetAppliedTagByKey_KeyAppliedTagDoesNotExists_Null()
        {
            var actual = m_target.GetAppliedTagByKey(0);

            Assert.IsNull(actual);
        }