public GetLostItemViewModel(GetLostItem item)
 {
     this.IsGetItem = item.Count > 0;
     this.Type = item.Type;
     this.ItemName = item.Type.ToDisplayName();
     this.Count = Math.Abs(item.Count);
 }