/// <summary> /// Update a channel store object and persist changes into the database /// </summary> /// <param name="channelStore"></param> public void UpdateChannelStore(ChannelStore channelStore) { channelStore.Save(); }
/// <summary> /// Create a new channel store object and persist it into the database. /// </summary> /// <param name="channelStore">The channel item object</param> public ChannelStore AddChannelStore(ChannelStore channelStore) { channelStore.Save(); return(channelStore); }