Пример #1
0
		public Channel Insert (Channel channel)
		{
			using (var conn=OpenConnection()) {
				channel.Id=conn.Query<int>(""+SelectIdentityCommand,channel).Single();
			}

			return channel;
		}
Пример #2
0
		public int Update (Channel channel)
		{
			throw new NotImplementedException ();
		}