public int AddNew(Item item) { if (this.CheckExists(item.ItemId)) { return(0); } else { return(itemService.AddNew(item)); } }