public GenericRpository(ICartConnectionFactory connectionFactory, string tableName, string idName = "Id") { _connectionFactory = connectionFactory; _tableName = tableName; _IdName = idName; }
public CartItemsRepository(ICartConnectionFactory connectionFactory) : base(connectionFactory, "CartItems") { }