예제 #1
0
 /// <summary>
 /// Update a channel store object and persist changes into the database
 /// </summary>
 /// <param name="channelStore"></param>
 public void UpdateChannelStore(ChannelStore channelStore)
 {
     channelStore.Save();
 }
예제 #2
0
 /// <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);
 }